nixos/modules/media/ncmpcpp/default.nix

26 lines
457 B
Nix
Raw Normal View History

2023-07-07 21:38:41 +04:00
{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.media.ncmpcpp;
in {
options.modules.media.ncmpcpp = {
2023-07-07 23:46:47 +04:00
enable = mkOption {
type = types.bool;
default = false;
};
2023-07-07 21:38:41 +04:00
};
config = mkIf cfg.enable {
users.users.sako = {
packages = with pkgs; [
ncmpcpp
];
};
xdg.configFile = {
ncmpcpp = {
source = ../../config/ncmpcpp;
recursive = true;
};
};
};
}