mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
4b702bf6b7
PR #1457
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
|
|
'';
|
|
};
|
|
}
|