mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
13 lines
311 B
Nix
13 lines
311 B
Nix
{ inputs, system, sources, ... }: {
|
|
mkHost = host:
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit inputs system sources; };
|
|
|
|
modules = [
|
|
host
|
|
./modules/nixos
|
|
inputs.home-manager.nixosModules.default
|
|
inputs.stylix.nixosModules.stylix
|
|
];
|
|
};
|
|
}
|