Files
nixos/home/default.nix
T

29 lines
581 B
Nix
Raw Normal View History

{ top, overlays, ... }:
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 top.nixunstable {
inherit system overlays;
config.allowUnfree = true;
}
);
in
top.hmunstable.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
extraSpecialArgs = {
inherit top;
nixvim = top.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
}