1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
home-manager/tests/modules/programs/eza/theme.nix
2025-04-27 14:30:15 -05:00

20 lines
404 B
Nix

{
programs.eza = {
enable = true;
theme = {
colors = {
background = "254";
foreground = "237";
};
};
};
nmt.script = ''
assertFileExists home-files/.config/eza/theme.yml
assertFileContent home-files/.config/eza/theme.yml ${builtins.toFile "eza-theme-expected.yml" ''
colors:
background: '254'
foreground: '237'
''}
'';
}