2024-10-11 12:28:53 -05:00
|
|
|
{ top, overlays, ... }:
|
2022-08-02 01:50:50 -05:00
|
|
|
|
2023-12-14 00:54:34 -06:00
|
|
|
rec {
|
2024-10-03 11:26:39 -05:00
|
|
|
greghellings =
|
|
|
|
|
let
|
|
|
|
|
system = "x86_64-linux";
|
2024-10-11 12:28:53 -05:00
|
|
|
pkgs = (
|
|
|
|
|
import top.nixunstable {
|
|
|
|
|
inherit system overlays;
|
|
|
|
|
config.allowUnfree = true;
|
|
|
|
|
}
|
|
|
|
|
);
|
2024-10-03 11:26:39 -05:00
|
|
|
in
|
2024-10-11 12:28:53 -05:00
|
|
|
top.hmunstable.lib.homeManagerConfiguration {
|
2024-10-03 11:26:39 -05:00
|
|
|
inherit pkgs;
|
|
|
|
|
modules = [ ./home.nix ];
|
|
|
|
|
extraSpecialArgs = {
|
2024-10-11 12:28:53 -05:00
|
|
|
inherit top;
|
|
|
|
|
nixvim = top.nixvimunstable;
|
2024-10-03 11:26:39 -05:00
|
|
|
gui = false;
|
|
|
|
|
gnome = false;
|
|
|
|
|
host = "ivr";
|
|
|
|
|
username = "gregory.hellings";
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-12-14 00:54:34 -06:00
|
|
|
|
2024-10-03 11:26:39 -05:00
|
|
|
"gregory.hellings" = greghellings;
|
2023-11-01 14:14:50 -05:00
|
|
|
}
|