mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-14 04:51:08 +01:00
16 lines
368 B
Nix
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}
|
|
'';
|
|
}
|