nixos-home-flake/lib/mkSystem.nix

12 lines
286 B
Nix
Raw Normal View History

2024-02-21 21:18:36 +01:00
{ self, ... } @ inputs: name: system: inputs.nixpkgs.lib.nixosSystem (
{
inherit system;
specialArgs = { inherit inputs self; };
modules = [
"${self}/hosts/${name}/system.nix"
"${self}/hosts/${name}/user.nix"
inputs.home-manager.nixosModule
];
}
)