1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/atuin/theme.nix
2025-04-17 11:03:18 -07:00

26 lines
472 B
Nix

{
programs.atuin = {
enable = true;
themes.my-theme = {
theme.name = "My Theme";
colors = {
Base = "#000000";
Title = "#FFFFFF";
};
};
};
nmt.script = ''
assertFileContent \
home-files/.config/atuin/themes/my-theme.toml \
${builtins.toFile "example-theme-expected.toml" ''
[colors]
Base = "#000000"
Title = "#FFFFFF"
[theme]
name = "My Theme"
''}
'';
}