This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/foot/default.nix

41 lines
824 B
Nix
Raw Normal View History

2022-12-16 08:10:28 +00:00
{
2023-10-08 10:51:15 +01:00
config,
pkgs,
inputs,
...
}: {
2022-12-16 08:10:28 +00:00
programs.foot = {
enable = true;
settings = {
main = {
2023-08-13 20:24:57 +01:00
font = "JetBrainsMono Nerd Font:pixelsize=14";
2022-12-16 08:10:28 +00:00
pad = "16x16 center";
2023-05-20 18:42:57 +01:00
underline-offset = "4px";
2022-12-16 08:10:28 +00:00
};
colors = {
alpha = "0.90";
2022-12-16 08:10:28 +00:00
2023-05-26 02:42:33 +01:00
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";
2022-12-16 08:10:28 +00:00
};
};
};
}