mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
16 lines
306 B
Nix
16 lines
306 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.feh.enable = true;
|
||
|
|
||
|
nixpkgs.overlays =
|
||
|
[ (self: super: { feh = pkgs.writeScriptBin "dummy-feh" ""; }) ];
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-files/.config/feh/buttons
|
||
|
assertPathNotExists home-files/.config/feh/keys
|
||
|
'';
|
||
|
};
|
||
|
}
|