nix-files/hosts/common/programs/g4music.nix

25 lines
640 B
Nix
Raw Normal View History

# N.B.: requires first-run setup on moby:
# - UI will render transparent
# - click the hamburger (top-right: immediately left from close button)
# > Preferences
# > Background-blur mode: change from "Always" to "Never"
#
# the background blur is probably some dconf setting somewhere.
2023-08-14 06:17:22 +00:00
{ ... }:
{
sane.programs.g4music = {
2024-01-23 15:06:45 +00:00
sandbox.method = "bwrap";
sandbox.whitelistAudio = true;
sandbox.whitelistDbus = [ "user" ]; # mpris
sandbox.whitelistWayland = true;
sandbox.extraHomePaths = [
"Music"
];
persist.byStore.plaintext = [
2023-08-14 06:17:22 +00:00
# index?
".cache/com.github.neithern.g4music"
];
};
}