1
0
Fork 0
nix-configuration/modules/roles/default.nix

14 lines
156 B
Nix
Raw Normal View History

{ lib, ... }:
2024-02-29 09:53:34 -05:00
with lib;
{
options = {
host.role = mkOption {
type = types.enum [
"server"
"workstation"
];
};
};
}