NixOS-Config/modules/system/options/default.nix

18 lines
363 B
Nix
Raw Normal View History

{ lib, ... }:
with lib; {
options = {
system = {
desktop.enable = mkOption {
type = types.bool;
default = true;
2024-11-13 09:43:47 -05:00
description = "Enable desktop apps and services";
};
server.enable = mkOption {
type = types.bool;
default = false;
2024-11-13 09:43:47 -05:00
description = "Enable server services";
};
};
};
}