installed and ran alejandra as formatter

This commit is contained in:
Jade 2023-11-26 21:26:49 +01:00
commit 8a1314b58f
47 changed files with 1362 additions and 1113 deletions

View file

@ -1,35 +1,40 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}: {
config = {
networking = {
firewall = {
enable = true;
allowedTCPPorts = [
allowedTCPPorts = [
# ssh
22
# http, https
80 443
80
443
# syncthing web ui
8384
# syncthing
22000
22000
# mumble
64738
];
allowedUDPPorts = [
8080
allowedUDPPorts = [
8080
# other
# other
12333
# syncthing discovery
21027
21027
# mumble
# mumble
64738
];
};