fix: clan services

This commit is contained in:
Moritz Böhme 2025-05-14 20:27:45 +02:00
parent cbd5295bd5
commit 5fda53d31d
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 7 additions and 9 deletions

View file

@ -3,7 +3,7 @@
lib, lib,
... ...
}: { }: {
clan.inventory.modules = { clan.modules = {
remote-builders = lib.modules.importApply ./remote-builders/default.nix {inherit self;}; remote-builders = lib.modules.importApply ./remote-builders/default.nix {inherit self;};
}; };
} }

View file

@ -8,14 +8,12 @@
# These options can be set via 'roles.client.settings' # These options can be set via 'roles.client.settings'
options.supportedFeatures = lib.mkOption { options.supportedFeatures = lib.mkOption {
type = with lib.types; type = with lib.types;
listOf ( listOf (enum [
oneOf [ "nixos-test"
"nixos-test" "benchmark"
"benchmark" "big-parallel"
"big-parallel" "kvm"
"kvm" ]);
]
);
default = []; default = [];
description = '' description = ''
kvm | Everything which builds inside a vm, like NixOS tests kvm | Everything which builds inside a vm, like NixOS tests