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