From a9a23e3c2601b4c720cb2045be499f71dede58db Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Sat, 20 Nov 2021 00:34:44 +0000 Subject: [PATCH] Add flakes, make main shell fish --- configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 9a9cbdf..b3d62a7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -10,6 +10,10 @@ daemonNiceLevel = 5; daemonIONiceLevel = 1; autoOptimiseStore = true; + package = pkgs.nixFlakes; + extraOptions = '' + experimental-features = nix-command flakes + ''; gc = { automatic = true; dates = "00:00"; @@ -31,7 +35,6 @@ services.resolved.extraConfig = "MulticastDNS=true"; - networking.firewall.enable = false; programs.fish.enable = true; @@ -42,6 +45,7 @@ description = "Artemis Tosini"; uid = 1000; extraGroups = [ "wheel" "artemis" ]; + shell = pkgs.fish; # hashedPassword set in private }; groups.artemis.gid = config.users.users.artemis.uid;