72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
15 lines
306 B
Nix
15 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
|
|
'';
|
|
};
|
|
}
|