mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 13:19:09 +02:00
14 lines
357 B
Nix
14 lines
357 B
Nix
{
|
|
den = {
|
|
schema.conf = { lib, ... }: {
|
|
options = {
|
|
isPublic = lib.mkEnableOption "mark this as a public config (= without secrets)";
|
|
isMicroVM = lib.mkEnableOption "mark this config as a microvm";
|
|
mainUser = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "swarsel";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|