Updated, added features, spotify and discord

This commit is contained in:
2025-05-07 22:37:33 +03:00
parent 751cb95bc2
commit a13717962b
5 changed files with 37 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, pkgs, ... }:
let
isEnabled =
config.azos.discord.enable;
in {
options.azos.discord.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
discord
];
};
}