Files
nixos/home/default.nix
T
Greg Hellings 2443429454 Fix Jeremiah and hms
Add Jeremiah to the users page
Remove unnecessary home-manager configuration
Convert hms into a shell application
2025-06-11 01:24:15 -05:00

40 lines
801 B
Nix

{
overlays,
top,
...
}:
let
pkgs =
system:
(import top.nixunstable {
inherit system overlays;
config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
});
user =
system: host: username:
top.hmunstable.lib.homeManagerConfiguration {
pkgs = pkgs system;
modules = [
../modules/nix-conf.nix
./home.nix
];
extraSpecialArgs = {
inherit top host username;
nixvim = top.nixvimunstable;
gui = false;
gnome = false;
};
};
greg = host: (user "x86_64-linux" host "greg");
in
{
"MacBook-Pro.local" = user "aarch64-darwin" "ivr" "gregory.hellings";
exodus = greg "exodus";
jude = greg "jude";
isaiah = greg "isaiah";
jeremiah = greg "jeremiah";
}