forked from Bun/nixos-config
The big variable overhaul
This commit is contained in:
parent
3f0a235dc8
commit
6dab8fc029
36 changed files with 269 additions and 326 deletions
|
@ -1,23 +1,19 @@
|
|||
{
|
||||
{outputs, ...}: {
|
||||
# Enable a terminal emulator
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
server.enable = false;
|
||||
settings = {
|
||||
main = let
|
||||
fonts = import ../common/fonts.nix;
|
||||
in {
|
||||
main = {
|
||||
term = "xterm-256color";
|
||||
font = "${fonts.nerd}:size=14.7";
|
||||
font = "${outputs.look.fonts.nerd}:size=14.7";
|
||||
};
|
||||
cursor = {
|
||||
style = "beam";
|
||||
};
|
||||
colors = let
|
||||
colors = import ../common/colors.nix;
|
||||
in {
|
||||
colors = {
|
||||
alpha = "0.65";
|
||||
background = "${colors.dark}";
|
||||
background = "${outputs.look.colors.dark}";
|
||||
regular0 = "3f3f3f";
|
||||
regular1 = "cc0000";
|
||||
regular2 = "4e9a06";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue