add server1 and change flatpak to make it works if not defined
nix flake show / show-flake (push) Successful in 40s
nix flake show / show-flake (push) Successful in 40s
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{ 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user