mirror of https://github.com/sgoudham/dotfiles.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
347 B
Nix
15 lines
347 B
Nix
1 year ago
|
{pkgs, ...}: {
|
||
|
home.packages = [pkgs.nap];
|
||
|
home.sessionVariables = {
|
||
|
NAP_THEME = "catppuccin_mocha";
|
||
|
NAP_PRIMARY_COLOR = "#f5c2e7";
|
||
|
NAP_RED = "#f38ba8";
|
||
|
NAP_GREEN = "#a6e3a1";
|
||
|
NAP_FOREGROUND = "#b4befe";
|
||
|
NAP_BACKGROUND = "#11111b";
|
||
|
NAP_BLACK = "#11111b";
|
||
|
NAP_GRAY = "#bac2de";
|
||
|
NAP_WHITE = "#FFFFFF";
|
||
|
};
|
||
|
}
|