Nixerus/configurations/host/default.nix

27 lines
558 B
Nix
Raw Normal View History

2023-06-07 00:53:21 +02:00
{ inputs, materusFlake }:
2023-05-18 12:07:07 +02:00
2023-06-07 00:53:21 +02:00
let
profles = import ../profile;
in
{
2023-05-18 12:07:07 +02:00
materusPC = inputs.nixpkgs.lib.nixosSystem rec {
2023-06-07 00:53:21 +02:00
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
];
};
2023-05-18 12:07:07 +02:00
2023-06-07 00:53:21 +02:00
}