nix-files/hosts/common/programs/nicotine-plus.nix

14 lines
372 B
Nix
Raw Normal View History

# soulseek filesharing GUI app
{ pkgs, ... }:
{
sane.programs.nicotine-plus = {
2024-05-25 10:21:17 +00:00
sandbox.method = "bwrap";
sandbox.whitelistWayland = true;
sandbox.net = "vpn";
# ".config/nicotine": contains the config file, with plaintext creds.
# TODO: define this as a secret instead of persisting it.
persist.byStore.private = [ ".config/nicotine" ];
};
}