nix-config/modules/nix/groups/server.nix
smayzy 87a7013d51
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 2m59s
update && remove floorp & stylix && mkForce nfv theme && change kdenlive pkg name cause changed upstream
2025-09-27 10:07:50 +02:00

21 lines
375 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.server.enable = mkOption {
type = types.bool;
default = false;
description = "desktop settings";
};
config = mkIf config.smayzy.server.enable {
smayzy = {
grub.disable = true;
base = true;
power = "desktop";
openssh.enable = true;
};
};
}