Files
nixos/home/default.nix
T

39 lines
800 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;
2025-03-20 10:45:16 -05:00
config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
}
);
in
top.hmunstable.lib.homeManagerConfiguration {
inherit pkgs;
2025-02-04 08:14:16 -06:00
modules = [
2025-03-20 10:45:16 -05:00
(import ../modules/nix-conf.nix {
inherit pkgs;
inherit (pkgs) lib;
cache = false;
})
2025-02-04 08:14:16 -06:00
./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
}