This commit is contained in:
2023-02-22 10:38:24 -05:00
parent 199060ee56
commit 33b693a2a3
12 changed files with 88 additions and 124 deletions

View File

@@ -1,8 +1,13 @@
{ config, pkgs, ... }:
{
options.mymods.nicotine.enable = lib.mkEnableOption "Enable Nicotine";
config = lib.mkIf config.mymods.nicotine.enable {
home.packages = with pkgs; [
nicotine-plus
];
xdg.configFile."nicotine/config.old".source = ./configs/nicotine;
}
};
}