2021-06-16 05:30:04 +03:00

51 lines
1.3 KiB
Nix

{ pkgs, lib, config, ... }:
let
thmFile = config.lib.base16.templateFile;
thm = config.lib.base16.theme;
in
{
# home-manager.users.alukard.home.file."tests/vscode/themes/thm.base16.json".source =
# thmFile { name = "vscode"; };
# Support Wal color theme
# home-manager.users.alukard.home.file.".cache/wal/colors".text = ''
# #${thm.base00-hex}
# #${thm.base08-hex}
# #${thm.base0B-hex}
# #${thm.base0A-hex}
# #${thm.base0D-hex}
# #${thm.base0E-hex}
# #${thm.base0C-hex}
# #${thm.base05-hex}
# #${thm.base03-hex}
# #${thm.base09-hex}
# #${thm.base01-hex}
# #${thm.base02-hex}
# #${thm.base04-hex}
# #${thm.base06-hex}
# #${thm.base0F-hex}
# #${thm.base07-hex}
# '';
defaultApplications.editor = {
cmd = "${pkgs.vscode}/bin/code";
desktop = "code";
};
home-manager.users.alukard.home.file.".cache/wal/colors".text = ''
#${thm.base00-hex}
#${thm.base08-hex}
#${thm.base0B-hex}
#${thm.base0A-hex}
#${thm.base0D-hex}
#${thm.base0E-hex}
#${thm.base0C-hex}
#${thm.base05-hex}
#${thm.base03-hex}
#${thm.base08-hex}
#${thm.base0B-hex}
#${thm.base0A-hex}
#${thm.base0D-hex}
#${thm.base0E-hex}
#${thm.base0C-hex}
#${thm.base07-hex}
'';
}