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

14 lines
226 B
Nix

{ lib, ... }:
with lib; {
options.system = {
desktop.enable = mkOption {
type = types.bool;
default = true;
};
server.enable = mkOption {
type = types.bool;
default = false;
};
};
}