23 lines
589 B
Nix
Raw Normal View History

2024-09-26 19:19:09 -07:00
{ lib, system, user, inputs, agenix, home-manager, jovian-nixos, ... }:
{
2024-09-26 20:02:03 -07:00
inherit system;
specialArgs = { inherit user inputs; };
modules = [
2024-09-26 20:15:20 -07:00
../default/physical/configuration.nix
2024-09-26 20:02:03 -07:00
./configuration.nix
./hardware.nix
2024-09-26 20:15:20 -07:00
../../modules
2024-09-26 20:02:03 -07:00
agenix.nixosModules.default
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit user; };
home-manager.users.${user} = {
imports = [
../../home-modules
];
};
}
];
2024-09-26 19:19:09 -07:00
}