Files
nixos/home/default.nix
T
2023-11-03 10:06:32 -05:00

24 lines
390 B
Nix

{
inputs,
overlays,
...
}:
{
"gregory.hellings" =
let
system = "x86_64-linux";
pkgs = (import inputs.nixunstable { inherit system overlays; });
in inputs.hmunstable.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
extraSpecialArgs = {
inherit inputs;
gui = false;
gnome = false;
host = "ivr";
username = "gregory.hellings";
};
};
}