mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-06 16:57:03 +00:00
eww: add null configDir test
This commit is contained in:
parent
1f6fa87808
commit
d303453b13
2 changed files with 15 additions and 1 deletions
|
@ -1 +1,4 @@
|
|||
{ eww-basic-config = ./basic-config.nix; }
|
||||
{
|
||||
eww-basic-config = ./basic-config.nix;
|
||||
eww-null-config = ./null-config.nix;
|
||||
}
|
||||
|
|
11
tests/modules/programs/eww/null-config.nix
Normal file
11
tests/modules/programs/eww/null-config.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }: {
|
||||
config = {
|
||||
programs.eww = { enable = true; };
|
||||
|
||||
nmt.script = ''
|
||||
yuckDir=home-files/.config/eww
|
||||
|
||||
assertPathNotExists $yuckDir/eww.yuck
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue