32 lines
627 B
Nix
32 lines
627 B
Nix
{ top, overlays, ... }:
|
|
|
|
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 = [
|
|
../modules/nix-conf.nix
|
|
./home.nix
|
|
];
|
|
extraSpecialArgs = {
|
|
inherit top;
|
|
nixvim = top.nixvimunstable;
|
|
gui = false;
|
|
gnome = false;
|
|
host = "ivr";
|
|
username = "gregory.hellings";
|
|
};
|
|
};
|
|
|
|
"gregory.hellings" = greghellings;
|
|
}
|