Added initial files
This commit is contained in:
commit
0c97384a8d
20 changed files with 874 additions and 0 deletions
13
hosts/common/nix.nix
Normal file
13
hosts/common/nix.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
nix = {
|
||||
extraOptions = "experimental-features = nix-command flakes";
|
||||
gc = { # Garbage collector
|
||||
automatic = true;
|
||||
options = "--delete-older-than 8d";
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "22.05";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue