install gruvbox theme for alacritty
This commit is contained in:
parent
7576e036d5
commit
55baf12f89
2 changed files with 40 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
|||
# TODO
|
||||
|
||||
- auto-install firefox extensions
|
||||
- flakes?
|
||||
- keepassxc
|
||||
- nextcloud client
|
||||
|
@ -9,3 +8,11 @@
|
|||
- nixos-rebuild without root
|
||||
- alacritty settings
|
||||
- theme
|
||||
|
||||
## Firefox extensions not available in NUR
|
||||
|
||||
- bypass paywalls clean
|
||||
- http version indicator
|
||||
- indicate tls
|
||||
- sci-hub x now
|
||||
- sixindicator
|
||||
|
|
33
home.nix
33
home.nix
|
@ -11,7 +11,38 @@
|
|||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
alacritty.enable = true;
|
||||
alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
# Gruvbox theme (https://github.com/alacritty/alacritty-theme/blob/master/themes/gruvbox_dark.yaml)
|
||||
colors = {
|
||||
primary = {
|
||||
background = "0x282828";
|
||||
foreground = "0xebdbb2";
|
||||
};
|
||||
normal = {
|
||||
black = "0x282828";
|
||||
red = "0xcc241d";
|
||||
green = "0x98971a";
|
||||
yellow = "0xd79921";
|
||||
blue = "0x458588";
|
||||
magenta = "0xb16286";
|
||||
cyan = "0x689d6a";
|
||||
white = "0xa89984";
|
||||
};
|
||||
bright = {
|
||||
black = "0x928374";
|
||||
red = "0xfb4934";
|
||||
green = "0xb8bb26";
|
||||
yellow = "0xfabd2f";
|
||||
blue = "0x83a598";
|
||||
magenta = "0xd3869b";
|
||||
cyan = "0x8ec07c";
|
||||
white = "0xebdbb2";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
firefox = {
|
||||
enable = true;
|
||||
|
|
Reference in a new issue