bennu: Add foot

This commit is contained in:
Alexander Heldt
2023-07-20 13:43:42 +02:00
parent 7b9653fb9d
commit 5da9395392
2 changed files with 16 additions and 1 deletions

View File

@@ -76,7 +76,11 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; []; environment.systemPackages = with pkgs; [];
fonts.fonts = with pkgs; [
(nerdfonts.override { fonts = [ "DejaVuSansMono" ]; })
];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.
# programs.mtr.enable = true; # programs.mtr.enable = true;

View File

@@ -19,6 +19,17 @@
{ path = ./configs/.gitconfig; } { path = ./configs/.gitconfig; }
]; ];
}; };
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
font = "DejaVuSansM Nerd Font Mono";
};
};
};
programs.zsh = { programs.zsh = {
enable = true; enable = true;