mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
13 lines
317 B
Nix
13 lines
317 B
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
{
|
|
options.mymods.nicotine.enable = lib.mkEnableOption "Enable Nicotine";
|
|
|
|
# config.home-manager = lib.mkIf config.mymods.nicotine.enable {
|
|
|
|
# home.packages = with pkgs; [
|
|
# nicotine-plus
|
|
# ];
|
|
# xdg.configFile."nicotine/config.old".source = ./configs/nicotine;
|
|
# };
|
|
} |