diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index 903265a..3f42b2b 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -7,7 +7,7 @@ #../../modules/system/desktop/plasma.nix ../../modules/system/desktop/nvidia.nix ../../modules/system/programs/sunshine.nix - #../../modules/system/programs/syncthing.nix + ../../modules/system/programs/syncthing.nix ../../modules/system/programs/thunar.nix ../../modules/system/utils/common.nix ../../modules/system/utils/firewall.nix @@ -37,6 +37,9 @@ services.printing.enable = true; + # Keyboard + hardware.ckb-next.enable = true; + system.stateVersion = "23.11"; } diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix index 6f5ca35..91d05a2 100644 --- a/hosts/desktop/home.nix +++ b/hosts/desktop/home.nix @@ -25,6 +25,7 @@ kdenlive gthumb unstable.arduino-ide + prismlauncher ]; home.sessionVariables = { diff --git a/modules/home/desktop/hyprland/default.nix b/modules/home/desktop/hyprland/default.nix index d1dbc66..d5bbf71 100644 --- a/modules/home/desktop/hyprland/default.nix +++ b/modules/home/desktop/hyprland/default.nix @@ -142,6 +142,12 @@ ",code:196,workspace, 8" ",code:197,workspace, 9" ",code:198,workspace, 10" + + "SHIFT, code:194, movetoworkspace, 6" + "SHIFT, code:195, movetoworkspace, 7" + "SHIFT, code:196, movetoworkspace, 8" + "SHIFT, code:197, movetoworkspace, 9" + "SHIFT, code:198, movetoworkspace, 10" ] else [ ]); bindle = [ diff --git a/modules/system/programs/syncthing.nix b/modules/system/programs/syncthing.nix index d1639f4..ecc7fa8 100644 --- a/modules/system/programs/syncthing.nix +++ b/modules/system/programs/syncthing.nix @@ -20,13 +20,13 @@ }; }; folders = { - "xeovalyte-documents" = { # Name of folder in Syncthing, also the folder ID - path = "/home/xeovalyte/Documents"; # Which folder to add to Syncthing - devices = [ "xv-server" ]; # Which devices to share the folder with + "xeovalyte-documents" = { + path = "/home/xeovalyte/Documents"; + devices = [ "xv-server" ]; }; - "xeovalyte-logseq" = { # Name of folder in Syncthing, also the folder ID - path = "/home/xeovalyte/Logseq"; # Which folder to add to Syncthing - devices = [ "xv-server" ]; # Which devices to share the folder with + "xeovalyte-logseq" = { + path = "/home/xeovalyte/Logseq"; + devices = [ "xv-server" ]; }; }; }; diff --git a/modules/system/programs/thunar.nix b/modules/system/programs/thunar.nix index f8514d6..ed54653 100644 --- a/modules/system/programs/thunar.nix +++ b/modules/system/programs/thunar.nix @@ -11,4 +11,5 @@ services.gvfs.enable = true; services.tumbler.enable = true; + programs.file-roller.enable = true; }