14 lines
167 B
Nix
14 lines
167 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
xresources.properties = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-files/.Xresources
|
||
|
'';
|
||
|
};
|
||
|
}
|