nichts/hosts/default.nix

29 lines
480 B
Nix
Raw Normal View History

2024-07-21 20:14:19 +02:00
{
withSystem,
2024-08-30 23:15:56 +02:00
inputs,
2024-07-21 20:14:19 +02:00
...
}: let
2024-08-30 23:15:56 +02:00
inherit (inputs.self) lib;
inherit (lib.extendedLib.builders) mkSystem;
2024-04-10 17:56:10 +02:00
in {
flake.nixosConfigurations = {
temperance = mkSystem {
inherit withSystem;
system = "x86_64-linux";
modules = [
./vali/temperance
../modules
];
};
2024-07-21 20:14:19 +02:00
hermit = mkSystem {
inherit withSystem;
system = "x86_64-linux";
modules = [
./vali/hermit
../modules
];
};
2024-04-10 17:56:10 +02:00
};
2024-04-10 17:56:53 +02:00
}