aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/home-manager/tests/modules/programs/feh/feh-empty-settings.nix
blob: ad0d15153d2a666f7c6448223dbd1969522f6c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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
    '';
  };
}