aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/xresources/empty.nix
blob: 9dd80176ff3d9322b440c2c55f3aef85be542790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, ... }:

with lib;

{
  config = {
    xresources.properties = { };

    nmt.script = ''
      assertPathNotExists home-files/.Xresources
    '';
  };
}