actually disable kitty
This commit is contained in:
parent
103c0730d2
commit
9d69d77d39
1 changed files with 12 additions and 4 deletions
|
@ -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 = [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue