1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 00:21:04 +01:00
home-manager/tests/modules/programs/wofi/style-local-file.nix
2025-05-03 19:11:10 -05:00

12 lines
242 B
Nix

{
programs.wofi = {
enable = true;
style = ./basic-style.css;
};
nmt.script = ''
assertFileExists home-files/.config/wofi/style.css
assertFileContent home-files/.config/wofi/style.css \
${./basic-style.css}
'';
}