mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
17 lines
330 B
Nix
17 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
|
||
|
'';
|
||
|
};
|
||
|
}
|