Updated, added features, spotify and discord
This commit is contained in:
@@ -102,5 +102,4 @@ nix develop .#shells.x86_64-linux.debugTexShell
|
|||||||
|
|
||||||
** Things to work out
|
** Things to work out
|
||||||
|
|
||||||
*** Mail
|
|
||||||
*** Notebook tempaltes
|
*** Notebook tempaltes
|
||||||
|
|||||||
+1
-1
Submodule azos-core updated: edc8d1fa7a...71780bd96b
@@ -8,5 +8,7 @@
|
|||||||
./qutebrowser-config.nix
|
./qutebrowser-config.nix
|
||||||
./audio.nix
|
./audio.nix
|
||||||
./reaper.nix
|
./reaper.nix
|
||||||
|
./discord.nix
|
||||||
|
./spotify.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Executable
+17
@@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Executable
+17
@@ -0,0 +1,17 @@
|
|||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
let
|
||||||
|
isEnabled =
|
||||||
|
config.azos.spotify.enable;
|
||||||
|
in {
|
||||||
|
options.azos.spotify.enable = lib.mkOption {
|
||||||
|
default = true;
|
||||||
|
example = true;
|
||||||
|
type = lib.types.bool;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf isEnabled {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
spotify
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user