feat(nix): add registry entry to self

dev-docs
Moritz Böhme 2023-05-12 15:14:08 +02:00
parent f875fb90c5
commit e3b7c63f20
2 changed files with 3 additions and 1 deletions

View File

@ -142,7 +142,7 @@
lib.nixosSystem {
inherit pkgs system lib;
specialArgs = {
inherit inputs;
inherit inputs self;
};
modules = defaultModules ++ [ path ];
})

View File

@ -1,6 +1,7 @@
{ config
, lib
, inputs
, self
, ...
}:
@ -44,6 +45,7 @@ in
master.flake = inputs.master;
nixpkgs.flake = inputs.nixpkgs;
stable.flake = inputs.stable;
dotfiles.flake = self;
};
settings = {