Everything works for now except dashboard and maybe some other

This commit is contained in:
2025-04-23 08:41:19 +03:00
parent e2545d8e3d
commit 7fe99790a4
15 changed files with 187 additions and 32 deletions
+15
View File
@@ -0,0 +1,15 @@
{ lib, config, pkgs, ... }:
let
isEnabled =
config.azos.home-audio.enable;
in {
options.azos.home-audio.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
# home.packages = with pkgs; [pavucontrol];
};
}