72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
16 lines
330 B
Nix
16 lines
330 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.ncmpcpp.enable = true;
|
|
|
|
nixpkgs.overlays =
|
|
[ (self: super: { ncmpcpp = pkgs.writeScriptBin "dummy-ncmpcpp" ""; }) ];
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/ncmpcpp/config
|
|
|
|
assertPathNotExists home-files/.config/ncmpcpp/bindings
|
|
'';
|
|
};
|
|
}
|