Files
nixos/home/default.nix
T

26 lines
425 B
Nix
Raw Normal View History

2022-11-01 08:35:06 -05:00
{
2023-06-21 10:58:40 -05:00
inputs,
2022-11-01 08:35:06 -05:00
overlays,
...
}:
2022-08-02 01:50:50 -05:00
2023-12-14 00:54:34 -06:00
rec {
greghellings =
2023-11-01 14:14:50 -05:00
let
system = "x86_64-linux";
pkgs = (import inputs.nixunstable { inherit system overlays; });
2023-11-03 10:06:32 -05:00
in inputs.hmunstable.lib.homeManagerConfiguration {
2023-11-01 14:14:50 -05:00
inherit pkgs;
modules = [ ./home.nix ];
extraSpecialArgs = {
inherit inputs;
gui = false;
2023-11-03 10:06:32 -05:00
gnome = false;
2023-11-01 14:14:50 -05:00
host = "ivr";
username = "gregory.hellings";
2022-08-02 01:50:50 -05:00
};
2023-03-06 23:31:58 -06:00
};
2023-12-14 00:54:34 -06:00
"gregory.hellings" = greghellings;
2023-11-01 14:14:50 -05:00
}