This commit is contained in:
Constantin Gierczak--Galle 2024-11-21 18:41:54 +01:00
parent 271fa9ec35
commit 997e0e71db
No known key found for this signature in database
2 changed files with 16 additions and 19 deletions

View file

@ -1,9 +1,5 @@
# TODO: revamp to use the same framework as the other VMs
{
pkgs,
inputs,
...
}:
{ pkgs, inputs, ... }:
let
address = "129.199.146.101";
@ -20,7 +16,20 @@ in
# Bootloader.
boot.loader.systemd-boot.enable = true;
networking.hostName = "photoprism";
networking = {
hostName = "photoprism";
firewall.allowedTCPPorts = [
22
80
443
8007
];
firewall.allowedUDPPorts = [ ];
useNetworkd = true;
};
disko.devices = import ./disko.nix;
@ -46,15 +55,6 @@ in
security.acme.acceptTerms = true;
security.acme.defaults.email = "webmaster@nixos.org";
networking.firewall.allowedTCPPorts = [
22
80
443
8007
];
networking.firewall.allowedUDPPorts = [ ];
networking.useNetworkd = true;
systemd.network = {
config.routeTables = {

View file

@ -1,7 +1,4 @@
{
pkgs,
...
}:
{ pkgs, ... }:
let
port = 2342;