Files
nixos/home/default.nix
T

27 lines
527 B
Nix
Raw Normal View History

{ inputs
, overlays
, ...
2022-11-01 08:35:06 -05:00
}:
2022-08-02 01:50:50 -05:00
2023-12-14 00:54:34 -06:00
rec {
greghellings =
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;
nixvim = inputs.nixvimunstable;
gui = false;
gnome = false;
host = "ivr";
username = "gregory.hellings";
};
};
2023-12-14 00:54:34 -06:00
"gregory.hellings" = greghellings;
2023-11-01 14:14:50 -05:00
}