1
Fork 0
satellite/modules/themes/catppuccin/default.nix
2022-05-10 19:00:16 +03:00

49 lines
1.1 KiB
Nix

{ transparency ? 1, wallpaper }: { pkgs, ... }:
let
githubTheme = pkgs.myVimPlugins.githubNvimTheme; # github theme for neovim
variant = "dark";
foreign = pkgs.callPackage (import ./foreign.nix) { };
in
{
wallpaper = "${foreign.wallpapers}/${wallpaper}";
name = "catppuccin";
neovim = {
plugins = [
(
pkgs.vimUtils.buildVimPluginFrom2Nix {
name = "catppuccin";
src = foreign.nvim;
}
)
];
theme = builtins.readFile ./nvim.lua;
lualineTheme = "catppuccin";
};
tmux.path = "${foreign.tmux}/catppuccin.conf";
sddm.path = "${foreign.sddm}";
grub.path = pkgs.nixos-grub2-theme;
# grub.path = "${foreign.grub}/catppuccin-grub-theme/theme.txt";
gtk.path = null;
xresources = builtins.readFile "${foreign.xresources}/Xresources";
rofi = {
theme = "purple";
config = { };
};
alacritty.settings = {
import = [ "${foreign.alacritty}/catppuccin.yml" ];
window = {
padding = {
x = 8;
y = 8;
};
gtk_theme_variant = "dark";
};
background_opacity = transparency;
};
}