nix/home-manager/default.nix
2025-06-10 21:41:02 -05:00

34 lines
667 B
Nix

{
inputs,
pkgs,
attrs,
...
}: {
"e" = inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {
inherit inputs attrs;
useGlobalPkgs = true;
host = {
hostName = "t14";
inherit (attrs) username;
};
};
modules = [
./t14/home.nix
./home.nix
];
};
"minimal" = inputs.home-manager.lib.homeManagerConfiguration {
extraSpecialArgs = {
inherit inputs attrs;
targets.genericLinux.enable = true;
useGlobalPkgs = true;
host = {
hostName = "e";
inherit (attrs) username;
};
};
modules = [./home.nix];
};
}