diff options
Diffstat (limited to 'system/default.nix')
| -rw-r--r-- | system/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/default.nix b/system/default.nix index 6ef7b9c..08e131e 100644 --- a/system/default.nix +++ b/system/default.nix @@ -23,6 +23,7 @@ # allow flakes nix.settings.experimental-features = ["nix-command" "flakes"]; + nix.settings.use-xdg-base-directories = true; # allow unfree packages nixpkgs.config.allowUnfree = true; @@ -65,8 +66,6 @@ libz openssl shared-mime-info - # shell - bash # utility curl dig @@ -90,6 +89,7 @@ # system shell programs.zsh.enable = true; + programs.bash.enable = true; # use the latest kernel boot.kernelPackages = pkgs.linuxPackages_latest; |