1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/xresources/empty.nix
2020-06-28 11:23:34 +02:00

14 lines
167 B
Nix

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