diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/default.nix | 6 | ||||
-rw-r--r-- | profiles/workstation.nix | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/profiles/default.nix b/profiles/default.nix index 198d9f4..2f2ff9b 100644 --- a/profiles/default.nix +++ b/profiles/default.nix @@ -14,9 +14,11 @@ efi.canTouchEfiVariables = true; }; + tmp = { + cleanOnBoot = true; + useTmpfs = true; + }; kernelPackages = pkgs.linuxPackages_latest; - cleanTmpDir = true; - tmpOnTmpfs = true; }; # Select internationalisation properties. diff --git a/profiles/workstation.nix b/profiles/workstation.nix index 5451199..c21b934 100644 --- a/profiles/workstation.nix +++ b/profiles/workstation.nix @@ -87,6 +87,8 @@ [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-wlr ]; }; + programs.zsh.enable = true; + programs.sway = { enable = true; wrapperFeatures.gtk = true; |