.dotfiles/profiles-clone/nixos/hotel/default.nix
2026-04-02 19:25:58 +02:00

12 lines
251 B
Nix

{ lib, config, ... }:
{
options.swarselprofiles.hotel = lib.mkEnableOption "is this a hotel host";
config = lib.mkIf config.swarselprofiles.hotel {
swarselprofiles.personal = true;
swarselmodules = {
yubikey = false;
};
};
}