Remove some default gui packages for better aarch64 support
This commit is contained in:
parent
76f52b7207
commit
3e59ecc4b1
|
@ -4,11 +4,10 @@
|
||||||
imports = [
|
imports = [
|
||||||
./dunst.nix
|
./dunst.nix
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
./messaging.nix
|
./foot.nix
|
||||||
./cloud.nix
|
|
||||||
];
|
];
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
bitwarden
|
# bitwarden
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
17
nixos/home-manager/packages/gui/foot.nix
Normal file
17
nixos/home-manager/packages/gui/foot.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue