mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-11 13:20:04 +00:00
Some checks failed
Nix: build nixos-/home modules / Validate x86_64-linux (push) Has been cancelled
Trufflehog: check for exposed secrets / Run trufflehog (push) Has been cancelled
Nix: check for unused code / Run deadnix (push) Has been cancelled
Nix: validate flake / Validate x86_64-linux (push) Has been cancelled
31 lines
499 B
Nix
31 lines
499 B
Nix
{
|
|
lib,
|
|
config,
|
|
osConfig,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
in
|
|
{
|
|
programs.youtube-music = {
|
|
enable = false;
|
|
options = {
|
|
tray = true;
|
|
trayClickPlayPause = true;
|
|
resumeOnStart = false;
|
|
|
|
themes = [
|
|
(mkIf config.catppuccin.enable ./catppuccin-${config.catppuccin.flavor}.css)
|
|
];
|
|
|
|
language = osConfig.${namespace}.system.locale.keymap;
|
|
autoUpdates = false;
|
|
};
|
|
|
|
plugins = {
|
|
discord.enabled = true;
|
|
};
|
|
};
|
|
}
|