1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-17 20:18:31 +02:00
home-manager/tests/modules/xresources/empty.nix

14 lines
167 B
Nix
Raw Normal View History

2020-06-28 11:23:34 +02:00
{ config, lib, ... }:
with lib;
{
config = {
xresources.properties = { };
nmt.script = ''
assertPathNotExists home-files/.Xresources
'';
};
}