mirror of
https://github.com/nix-community/home-manager
synced 2024-12-24 18:59:47 +01:00
xresources: simplify tests
This commit is contained in:
parent
0b42cc1b1c
commit
63eb786e04
2 changed files with 18 additions and 26 deletions
|
@ -1,13 +1,9 @@
|
||||||
{ config, lib, ... }:
|
{ ... }:
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
{
|
{
|
||||||
config = {
|
|
||||||
xresources.properties = { };
|
xresources.properties = { };
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertPathNotExists home-files/.Xresources
|
assertPathNotExists home-files/.Xresources
|
||||||
'';
|
'';
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
{ config, lib, ... }:
|
{ ... }:
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
{
|
{
|
||||||
config = {
|
|
||||||
xresources = {
|
xresources = {
|
||||||
properties = {
|
properties = {
|
||||||
"Test*string" = "test-string";
|
"Test*string" = "test-string";
|
||||||
|
@ -18,5 +15,4 @@ with lib;
|
||||||
assertFileExists home-files/.Xresources
|
assertFileExists home-files/.Xresources
|
||||||
assertFileContent home-files/.Xresources ${./xresources-expected.conf}
|
assertFileContent home-files/.Xresources ${./xresources-expected.conf}
|
||||||
'';
|
'';
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue