Add NixOS config
This commit is contained in:
commit
6020d64797
43 changed files with 1372 additions and 0 deletions
33
home-manager/modules/foot.nix
Normal file
33
home-manager/modules/foot.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ config, pkgs, ... }: {
|
||||
programs.foot.enable = true;
|
||||
programs.foot.settings = {
|
||||
main = {
|
||||
font = "IosevkaTerm Nerd Font Mono:size=12";
|
||||
font-italic = "IosevkaTerm Nerd Font Mono:size=12";
|
||||
};
|
||||
|
||||
colors = {
|
||||
alpha = 0.85;
|
||||
|
||||
# Gruvbox; copied from https://codeberg.org/dnkl/foot/src/branch/master/themes/gruvbox-dark
|
||||
background="282828";
|
||||
foreground="ebdbb2";
|
||||
regular0="282828";
|
||||
regular1="cc241d";
|
||||
regular2="98971a";
|
||||
regular3="d79921";
|
||||
regular4="458588";
|
||||
regular5="b16286";
|
||||
regular6="689d6a";
|
||||
regular7="a89984";
|
||||
bright0="928374";
|
||||
bright1="fb4934";
|
||||
bright2="b8bb26";
|
||||
bright3="fabd2f";
|
||||
bright4="83a598";
|
||||
bright5="d3869b";
|
||||
bright6="8ec07c";
|
||||
bright7="ebdbb2";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue