1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 20:43:34 +02:00

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

View File

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