9 lines
256 B
Nix
9 lines
256 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [inputs.nix-colors.homeManagerModules.default];
|
|
# choose a theme from here https://github.com/tinted-theming/base16-schemes/tree/main
|
|
colorScheme = inputs.nix-colors.colorSchemes.tokyo-night-terminal-storm;
|
|
}
|