Compare commits
2 Commits
a2055ecc9c
...
e3b7c63f20
Author | SHA1 | Date |
---|---|---|
Moritz Böhme | e3b7c63f20 | |
Moritz Böhme | f875fb90c5 |
|
@ -142,7 +142,7 @@
|
|||
lib.nixosSystem {
|
||||
inherit pkgs system lib;
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit inputs self;
|
||||
};
|
||||
modules = defaultModules ++ [ path ];
|
||||
})
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ config
|
||||
, lib
|
||||
, inputs
|
||||
, self
|
||||
, ...
|
||||
}:
|
||||
|
||||
|
@ -22,6 +23,8 @@ in
|
|||
};
|
||||
|
||||
config.nix = {
|
||||
extraOptions = "experimental-features = nix-command flakes";
|
||||
|
||||
gc = {
|
||||
automatic = cfg.gc.enable;
|
||||
options = "--max-freed ${cfg.gc.minimumFreedGB} --delete-older-than 14d";
|
||||
|
@ -42,6 +45,7 @@ in
|
|||
master.flake = inputs.master;
|
||||
nixpkgs.flake = inputs.nixpkgs;
|
||||
stable.flake = inputs.stable;
|
||||
dotfiles.flake = self;
|
||||
};
|
||||
|
||||
settings = {
|
||||
|
|
Loading…
Reference in New Issue