1
Fork 0
satellite/home/features/desktop/discord/default.nix

37 lines
935 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
let
themeMap = pkgs.callPackage (import ./themes.nix) { };
2023-09-04 04:58:39 +02:00
discocss = pkgs.discocss.overrideAttrs (old: rec {
version = "0.3.0";
src = pkgs.fetchFromGitHub {
owner = "bddvlpr";
repo = "discocss";
rev = "v${version}";
hash = "sha256-2K7SPTvORzgZ1ZiCtS5TOShuAnmtI5NYkdQPRXIBP/I=";
};
});
in
{
programs.discord = {
enable = true;
2023-05-24 03:17:09 +02:00
enableOpenASAR = false;
disableUpdateCheck = true;
2023-03-12 05:24:25 +01:00
enableDevtools = true;
};
2023-04-27 01:08:20 +02:00
2023-09-04 04:58:39 +02:00
home.packages = [ discocss ];
xdg.configFile."discocss/custom.css".source = config.satellite.theming.get themeMap;
# {{{ Storage
# Clean cache older than 10 days
systemd.user.tmpfiles.rules = [
"d ${config.xdg.configHome}/discord/Cache/Cache_Data - - - 10d"
];
satellite.persistence.at.state.apps.discord.directories = [
2023-04-30 04:30:15 +02:00
"${config.xdg.configHome}/discord" # Why tf does discord store it's state here 💀
2023-04-27 01:08:20 +02:00
];
# }}}
}