mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
13 lines
287 B
Nix
13 lines
287 B
Nix
{ 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;
|
|
};
|
|
} |