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