convert flake-update to a submodule type

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-05-15 00:38:59 -04:00
committed by Alice Huston
parent 3fb96c2248
commit 3696ebd976
4 changed files with 116 additions and 57 deletions

View File

@ -186,6 +186,16 @@
formatter = forEachSystem (system: nixpkgs.legacyPackages.${system}.nixfmt-rfc-style);
# adds our lib functions to lib namespace
lib = nixpkgs.lib.extend (
self: super: {
my = import ./lib {
inherit nixpkgs inputs;
lib = self;
};
}
);
nixosConfigurations =
let
constructSystem =