Files
nixos/home/default.nix
T

46 lines
965 B
Nix
Raw Normal View History

2025-06-10 14:28:46 -05:00
{
2025-12-16 19:45:17 -06:00
metadata,
2025-12-18 10:45:24 -06:00
nixpkgs,
2025-06-10 14:28:46 -05:00
top,
}:
let
2025-06-10 23:20:00 -05:00
user =
2025-12-22 15:31:33 -06:00
host: username:
let
inherit (metadata.hosts.${host}) system;
pkgs = nixpkgs.${system};
in
top.hmunstable.lib.homeManagerConfiguration {
2025-12-22 15:31:33 -06:00
inherit pkgs;
2025-02-04 08:14:16 -06:00
modules = [
2025-06-10 14:28:46 -05:00
../modules/nix-conf.nix
2025-02-04 08:14:16 -06:00
./home.nix
];
extraSpecialArgs = {
2025-12-16 19:45:17 -06:00
inherit
top
host
username
metadata
;
nixvim = top.nixvimunstable;
gui = false;
gnome = false;
};
};
2025-12-22 15:31:33 -06:00
greg = host: (user host "greg");
2025-06-10 14:28:46 -05:00
in
{
2025-12-22 15:31:33 -06:00
"MacBook-Pro.local" = user "ivr" "gregory.hellings";
"MacBook-Prolocal.local" = user "ivr" "gregory.hellings";
2026-01-08 08:41:16 -06:00
"MacBook-Pro.thehellings.lan" = user "ivr" "gregory.hellings";
2025-06-11 21:42:14 -05:00
genesis = greg "genesis";
2025-06-10 23:20:00 -05:00
exodus = greg "exodus";
2025-07-02 11:55:35 -05:00
zeke = greg "zeke";
2025-06-10 23:20:00 -05:00
isaiah = greg "isaiah";
2025-06-11 01:24:15 -05:00
jeremiah = greg "jeremiah";
2025-06-12 04:44:39 +00:00
linode = greg "linode";
2025-09-04 08:01:21 -05:00
hosea = greg "hosea";
2025-06-11 18:37:27 -05:00
vm-gitlab = greg "vm-gitlab";
2023-11-01 14:14:50 -05:00
}