72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
13 lines
167 B
Nix
13 lines
167 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
xresources.properties = { };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.Xresources
|
|
'';
|
|
};
|
|
}
|