Compare commits
No commits in common. "e3b7c63f20cb4cc8315886d4707d0944858cecaf" and "a2055ecc9c39846d67da9e7384a06e4601fb8d4f" have entirely different histories.
e3b7c63f20
...
a2055ecc9c
|
@ -142,7 +142,7 @@
|
||||||
lib.nixosSystem {
|
lib.nixosSystem {
|
||||||
inherit pkgs system lib;
|
inherit pkgs system lib;
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs self;
|
inherit inputs;
|
||||||
};
|
};
|
||||||
modules = defaultModules ++ [ path ];
|
modules = defaultModules ++ [ path ];
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ config
|
{ config
|
||||||
, lib
|
, lib
|
||||||
, inputs
|
, inputs
|
||||||
, self
|
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -23,8 +22,6 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config.nix = {
|
config.nix = {
|
||||||
extraOptions = "experimental-features = nix-command flakes";
|
|
||||||
|
|
||||||
gc = {
|
gc = {
|
||||||
automatic = cfg.gc.enable;
|
automatic = cfg.gc.enable;
|
||||||
options = "--max-freed ${cfg.gc.minimumFreedGB} --delete-older-than 14d";
|
options = "--max-freed ${cfg.gc.minimumFreedGB} --delete-older-than 14d";
|
||||||
|
@ -45,7 +42,6 @@ in
|
||||||
master.flake = inputs.master;
|
master.flake = inputs.master;
|
||||||
nixpkgs.flake = inputs.nixpkgs;
|
nixpkgs.flake = inputs.nixpkgs;
|
||||||
stable.flake = inputs.stable;
|
stable.flake = inputs.stable;
|
||||||
dotfiles.flake = self;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Reference in New Issue