nix-config/modules/nix/groups/server.nix
smayzy cacd136ca9
All checks were successful
nix flake show / show-flake (push) Successful in 40s
add server1 and change flatpak to make it works if not defined
2025-08-08 22:00:52 +02:00

20 lines
347 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 = {
base = true;
power = "desktop";
stylix.enable = true;
};
};
}