actually disable kitty

This commit is contained in:
Charlotte 🦝 Delenk 2023-06-14 13:13:46 +01:00
parent 103c0730d2
commit 9d69d77d39
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -1,6 +1,7 @@
{
config,
pkgs,
system,
...
}: {
imports = [
@ -18,10 +19,17 @@
./tailscale.nix
];
services.openssh.enable = true;
environment.systemPackages = with pkgs; [
git
kitty.terminfo
];
environment.systemPackages = with pkgs;
[
git
]
++ (
if system != "riscv64-linux"
then [
kitty.terminfo
]
else []
);
networking.firewall.allowedTCPPorts = [22];
networking.firewall.allowedUDPPortRanges = [
{