mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 13:19:09 +02:00
12 lines
251 B
Nix
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;
|
|
};
|
|
|
|
};
|
|
|
|
}
|