aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/xresources/empty.nix
{ config, lib, ... }:

with lib;

{
  config = {
    xresources.properties = { };

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