mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
26 lines
472 B
Nix
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"
|
|
''}
|
|
'';
|
|
}
|