This commit is contained in:
Frost-Phoenix 2023-12-15 23:00:47 +01:00
parent e2c29412a5
commit e1073ed29c

View file

@ -36,8 +36,7 @@
};
};
outputs =
{ nixpkgs, self, ...} @ inputs:
outputs = { nixpkgs, self, ...} @ inputs:
let
selfPkgs = import ./pkgs;
username = "frostphoenix";
@ -45,7 +44,7 @@
{
overlays.default = selfPkgs.overlay;
nixosConfigurations = import ./modules/core/default.nix {
inherit self nixpkgs inputs;
inherit self nixpkgs inputs username;
};
};
}