add desktop base and laptop modules

This commit is contained in:
smayzy
2025-07-08 19:03:35 +02:00
parent f43c77d6f3
commit 4ebde5182a
7 changed files with 75 additions and 14 deletions
+22
View File
@@ -0,0 +1,22 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.desktop.enable = mkOption {
type = types.bool;
default = false;
description = "desktop settings";
};
config = mkIf config.smayzy.desktop.enable {
smayzy = {
base = true;
steam.enable = true;
prism.enable = true;
firefox.enable = true;
stylix.enable = true;
audio.enable = true;
};
};
}