nixos-home-flake/lib/mkSystem.nix

12 lines
264 B
Nix
Raw Normal View History

2024-02-21 22:54:04 +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
];
})