fix(home): Add isServer option
This commit is contained in:
parent
914b2b7ed0
commit
fca113aeed
1 changed files with 7 additions and 0 deletions
7
modules/home/options/isServer/default.nix
Normal file
7
modules/home/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