Shell works, also different thing, but cannot rebuild.

This commit is contained in:
2025-11-17 22:27:27 +02:00
parent 1824e5cee8
commit 8c14f0bfbb
9 changed files with 52 additions and 11 deletions
+1
View File
@@ -13,5 +13,6 @@
./discord.nix
./spotify.nix
./headphones-whmx4000.nix
./deluge.nix
];
}
+21
View File
@@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.deluged.enable;
in {
options.azos.deluged.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
deluged
];
};
}