mirror of
https://github.com/sstent/vmimages.git
synced 2026-01-25 14:41:44 +00:00
13 lines
292 B
Nix
13 lines
292 B
Nix
{ lib, 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;
|
|
};
|
|
} |