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
+16
View File
@@ -0,0 +1,16 @@
#https://xeiaso.net/talks/asg-2023-nixos/ example
{ lib, config, pkgs, ... }:
let
isEnabled =
config.azos.mpris-proxy.enable;
in {
options.azos.mpris-proxy.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
services.mpris-proxy.enable = true;
};
}