feat(nixos): Add marleyos.isServer option
This commit is contained in:
parent
f282402f36
commit
1e4014a2c1
1 changed files with 7 additions and 0 deletions
7
modules/nixos/options/isServer/default.nix
Normal file
7
modules/nixos/options/isServer/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{lib, ...}: {
|
||||
options.marleyos.isServer = lib.mkOption {
|
||||
type = with lib.types; bool;
|
||||
default = false;
|
||||
description = "Whether this machine is a server.";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue