mirror of https://github.com/materusPL/Nixerus.git
27 lines
558 B
Nix
27 lines
558 B
Nix
{ inputs, materusFlake }:
|
|
|
|
let
|
|
profles = import ../profile;
|
|
in
|
|
{
|
|
materusPC = inputs.nixpkgs.lib.nixosSystem rec {
|
|
specialArgs = { inherit inputs; inherit materusFlake; };
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./materusPC
|
|
inputs.private.systemModule
|
|
profles.osProfile
|
|
];
|
|
};
|
|
valkyrie = inputs.nixpkgs.lib.nixosSystem rec {
|
|
specialArgs = { inherit inputs; inherit materusFlake; };
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./valkyrie
|
|
inputs.private.systemModule
|
|
profles.osProfile
|
|
];
|
|
};
|
|
|
|
}
|