xresources: add missing test file

This commit is contained in:
Robert Helgesson 2020-06-28 11:23:34 +02:00
parent 600f39f966
commit 58716b7541
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{ config, lib, ... }:
with lib;
{
config = {
xresources.properties = { };
nmt.script = ''
assertPathNotExists home-files/.Xresources
'';
};
}