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