Migrate penguin to use nix

This commit is contained in:
2025-08-31 01:17:48 +08:00
parent c594ff128f
commit 5ab0a414a6
6 changed files with 50 additions and 36 deletions

View File

@@ -32,16 +32,18 @@ in
time.timeZone = "Asia/Singapore";
networking.firewall = {
enable = true;
allowedTCPPorts = [
22
3000
3001
];
networkmanager.enable = true;
nftables.enable = true;
trustedInterfaces = [ "tailscale0" ];
networking={
networkmanager.enable = true;
nftables.enable = true;
firewall = {
enable = true;
allowedTCPPorts = [
22
3000
3001
];
trustedInterfaces = [ "tailscale0" ];
};
};
services.openssh = {