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

11 lines
290 B
Nix
Raw Normal View History

# soulseek filesharing GUI app
{ ... }:
{
sane.programs.nicotine-plus = {
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" ];
};
}