34 lines
747 B
Nix
34 lines
747 B
Nix
{pkgs, ...}: {
|
|
imports = [../../home/work.nix ../../home/gui ../../home/desktop/hyprland.nix];
|
|
home.username = "elitherl";
|
|
home.homeDirectory = "/home/elitherl";
|
|
home.stateVersion = "22.11";
|
|
home.packages = with pkgs; [
|
|
zotero
|
|
openfortivpn
|
|
nomachine-client
|
|
teams-for-linux
|
|
zoom-us
|
|
];
|
|
|
|
wayland.windowManager.hyprland.extraConfig = ''source=./common.conf
|
|
monitor=eDP-1,preferred,auto,1.00
|
|
'';
|
|
programs.waybar.settings.main = {
|
|
"modules-left" = ["wlr/workspaces"];
|
|
"modules-center" = ["clock"];
|
|
"modules-right" = [
|
|
"cpu"
|
|
"memory"
|
|
"temperature"
|
|
"pulseaudio"
|
|
"network"
|
|
"bluetooth"
|
|
"backlight"
|
|
"battery"
|
|
"battery#bat2"
|
|
"tray"
|
|
];
|
|
};
|
|
}
|