1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-14 04:51:08 +01:00
home-manager/tests/modules/programs/wallust/wallust.nix
Kiara Grouwstra aa2c7ac404 wallust: add module
closes #6566
2025-04-20 13:16:28 -07:00

16 lines
368 B
Nix

{
home.enableNixpkgsReleaseCheck = false;
programs.wallust = {
enable = true;
backend = "full";
settings = {
backend = "fastresize";
color_space = "lchmixed";
};
};
nmt.script = ''
assertFileExists home-files/.config/wallust/wallust.toml
assertFileContent home-files/.config/wallust/wallust.toml ${./expected.toml}
'';
}