summary refs log tree commit diff stats
path: root/modules/nixos/roles.nix
blob: 69b281996899e727124c6390805a4954f6692f1d (plain) (blame)
1
2
3
4
5
6
7
{lib, ...}: {
  options.role.sils = lib.mkOption {
    type = lib.types.nullOr (lib.types.enum ["laptop" "laptop-light" "undefined" "vm" "workstation"]);
    default = null;
    description = "The role which should be applied to your configuration.";
  };
}