Remove some default gui packages for better aarch64 support

This commit is contained in:
Evie Litherland-Smith 2023-04-12 07:50:46 +01:00
parent 76f52b7207
commit 3e59ecc4b1
2 changed files with 19 additions and 3 deletions

View file

@ -4,11 +4,10 @@
imports = [
./dunst.nix
./kitty.nix
./messaging.nix
./cloud.nix
./foot.nix
];
home.packages = with pkgs; [
firefox
bitwarden
# bitwarden
];
}

View file

@ -0,0 +1,17 @@
{ ... }:
{
fonts.fontconfig.enable = true;
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
font = "FiraCode Nerd Font:size=8";
dpi-aware = "yes";
};
mouse = {
hide-when-typing = true;
};
};
};
}