Work is now working

This commit is contained in:
greg-compass
2022-09-06 11:41:09 -05:00
parent 5234eaefb4
commit b3c3b00450
12 changed files with 82 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
{ ... }:
{
imports = [
../shared
];
system.stateVersion = 4;
programs.zsh.enable = true;
programs.bash.enable = true;
}
@@ -2,13 +2,16 @@
{
imports = [
./nix.nix
../shared
./programs.nix
./syncthing.nix
./xonsh.nix
];
# Use hardlinking instead of copying when possible
nix.autoOptimiseStore = true;
# I am a fan of network manager, myself
networking.networkmanager.enable = true;
+7
View File
@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./nix.nix
];
}
@@ -11,9 +11,6 @@ experimental-features = nix-command flakes
min-free = ${toString (1024 * 1024 * 1024) }
max-free = ${toString (5 * 1024 * 1024 * 1024) }
'';
# Use hardlinking instead of copying when possible
autoOptimiseStore = true;
};
nixpkgs.config.allowUnfree = true;
}