29 lines
711 B
Nix
Raw Normal View History

2020-08-10 01:17:22 +04:00
{ pkgs, lib, config, ... }:
let
2020-08-15 19:36:16 +04:00
thmFile = config.lib.base16.templateFile;
2020-08-10 01:17:22 +04:00
thm = config.lib.base16.theme;
in
{
2020-08-15 19:36:16 +04:00
# home-manager.users.alukard.home.file."tests/vscode/themes/thm.base16.json".source =
# thmFile { name = "vscode"; };
2020-08-10 01:17:22 +04:00
# Support Wal color theme
home-manager.users.alukard.home.file.".cache/wal/colors".text = ''
#${thm.base00-hex}
#${thm.base08-hex}
#${thm.base0B-hex}
2020-08-15 19:36:16 +04:00
#${thm.base0A-hex}
2020-08-10 01:17:22 +04:00
#${thm.base0D-hex}
#${thm.base0E-hex}
2020-08-15 19:36:16 +04:00
#${thm.base0C-hex}
#${thm.base05-hex}
#${thm.base03-hex}
#${thm.base09-hex}
#${thm.base01-hex}
#${thm.base02-hex}
#${thm.base04-hex}
#${thm.base06-hex}
2020-08-10 01:17:22 +04:00
#${thm.base0F-hex}
2020-08-15 19:36:16 +04:00
#${thm.base07-hex}
2020-08-10 01:17:22 +04:00
'';
}