Add workspace for steam, update syncthing for Vanguard

This commit is contained in:
Evie Litherland-Smith 2023-06-28 18:03:45 +01:00
parent f69deb5339
commit e97d94c79e
3 changed files with 21 additions and 1 deletions

View file

@ -104,7 +104,7 @@
home-config
hyprland-config
./hosts/Vanguard
./users/xenia
./users/xenia/Vanguard.nix
./services/sshd
./services/syncthing/Vanguard.nix
{home-manager.users.xenia.imports = [hyprland-home-config];}

View file

@ -12,6 +12,7 @@
"Exports".path = "~/Documents/Exports";
"Notes".path = "~/notes";
"Pictures".path = "~/Pictures";
"Xochitl".enable = false;
"Zotero".path = "~/Documents/Zotero";
};
};

19
users/xenia/Vanguard.nix Normal file
View file

@ -0,0 +1,19 @@
{...}: {
imports = [./default.nix];
home-manager.users.xenia = {
wayland.windowManager.hyprland.extraConfig = ''
source=./common.conf
monitor=DP-2,highrr,auto,auto
workspace = name:steam
windowrule = workspace name:steam, [Ss]team.*
bind = ALT, S, moveworkspacetomonitor, name:steam current
bind = ALT, S, workspace, name:steam
bind = ALT SHIFT, S, moveworkspacetomonitor, name:steam current
bind = ALT SHIFT, S, movetoworkspace, name:steam
'';
programs.waybar.settings = {
main."wlr/workspaces"."format-icons"."steam" = "󰓓";
};
};
}