format all

This commit is contained in:
Kopatz
2025-10-30 21:59:31 +01:00
parent b1dda4d037
commit 8a78e618bb
188 changed files with 3526 additions and 1825 deletions

View File

@@ -1,5 +1,10 @@
# valheim.nix
{ config, pkgs, lib, ... }:
{
config,
pkgs,
lib,
...
}:
let
join = builtins.concatStringsSep " ";
in
@@ -12,7 +17,7 @@ in
];
};
networking.firewall.allowedUDPPorts = [ 8211 ]; #5349 ];
networking.firewall.allowedUDPPorts = [ 8211 ]; # 5349 ];
users.users.palworld = {
isSystemUser = true;
# Valheim puts save data in the home directory.

View File

@@ -1,4 +1,10 @@
{ config, pkgs, lib, inputs, ... }:
{
config,
pkgs,
lib,
inputs,
...
}:
let
cfg = config.custom.services.terraria;
in