44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{pkgs, ...}: {
|
|
home.username = "elitherl";
|
|
home.homeDirectory = "/home/elitherl";
|
|
home.stateVersion = "22.11";
|
|
home.packages = with pkgs; [
|
|
zotero
|
|
openfortivpn
|
|
nomachine-client
|
|
teams-for-linux
|
|
zoom-us
|
|
];
|
|
programs.firefox.package = pkgs.firefox-wayland;
|
|
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
source=./common.conf
|
|
|
|
monitor=eDP-1,preferred,auto,1.0
|
|
monitor=DP-3,preferred,auto,auto
|
|
monitor=DP-4,preferred,auto,auto,transform,1
|
|
|
|
windowrule = float, title:^([Zz]oom).*$
|
|
windowrule = center, title:^([Zz]oom).*$
|
|
windowrule = workspace 3 silent, ^(teams-for-linux)$
|
|
windowrule = workspace 3, title:^([Zz]oom).*$
|
|
windowrule = workspace 4 silent, ^(Nxplayer.bin)$
|
|
|
|
exec-once = firefox
|
|
exec-once = teams-for-linux
|
|
'';
|
|
programs.waybar.settings = {
|
|
main."output" = "!DP-4";
|
|
alt = {
|
|
"include" = [
|
|
"~/.config/waybar/modules.json"
|
|
"~/.config/waybar/layout.json"
|
|
];
|
|
"output" = "DP-4";
|
|
"modules-left" = ["wlr/workspaces"];
|
|
"modules-center" = ["clock#compact"];
|
|
"modules-right" = ["tray"];
|
|
};
|
|
};
|
|
}
|