40 lines
835 B
Nix
40 lines
835 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
|
|
'';
|
|
# wayland.windowManager.sway.config.output.eDP-1.scale = "1.0";
|
|
programs.waybar.settings.main = {
|
|
"modules-left" = ["wlr/workspaces"];
|
|
"modules-center" = ["clock"];
|
|
"modules-right" = [
|
|
"cpu"
|
|
"memory"
|
|
"temperature"
|
|
"pulseaudio"
|
|
"network"
|
|
"bluetooth"
|
|
"backlight"
|
|
"battery"
|
|
"battery#bat2"
|
|
"tray"
|
|
];
|
|
};
|
|
}
|