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