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 {
|
2024-08-28 18:17:55 +02:00
|
|
|
flake.nixosConfigurations = {
|
|
|
|
temperance = mkSystem {
|
|
|
|
inherit withSystem;
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./vali/temperance
|
|
|
|
../modules
|
|
|
|
];
|
|
|
|
};
|
2024-07-21 20:14:19 +02:00
|
|
|
|
2024-08-28 18:17:55 +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
|
|
|
}
|