47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
|
{pkgs, ...}: {
|
||
|
imports = [./default.nix];
|
||
|
home-manager.users.elitherl = {
|
||
|
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.0
|
||
|
monitor = DP-3,preferred,auto,auto
|
||
|
monitor = DP-4,preferred,auto,auto,transform,1
|
||
|
|
||
|
workspace = DP-3,1
|
||
|
workspace = DP-3,2
|
||
|
workspace = DP-3,3
|
||
|
workspace = DP-3,4
|
||
|
|
||
|
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"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|