add nicotine-plus

This commit is contained in:
Dmitriy Kholkin 2023-11-16 03:47:35 +03:00
parent 69525d4046
commit 733b6ac48b
2 changed files with 13 additions and 0 deletions

View File

@ -13,6 +13,7 @@
customProfiles.emulators
customProfiles.hoyo
customProfiles.minecraft
customProfiles.nicotine
customProfiles.sunshine
customProfiles.wine-games
];

View File

@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }: {
home-manager.users.${config.mainuser} = {
home.packages = [ pkgs.nicotine-plus ];
};
networking.firewall.allowedTCPPorts = [ 2234 ];
persist.state.homeDirectories = [
".config/nicotine"
".local/share/nicotine"
];
}