This commit is contained in:
Tristan 2024-02-17 17:07:58 +00:00
parent e7f3e1ba7c
commit 8131132c49
12 changed files with 28 additions and 43 deletions

View file

@ -29,10 +29,10 @@ in {
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/D8AA-8602";
fsType = "vfat";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/D8AA-8602";
fsType = "vfat";
};
fileSystems."/mnt/disk1" = {
device = "/dev/disk/by-uuid/caba0b6c-00d2-495a-8c04-67ea584f1a63";
@ -86,7 +86,7 @@ in {
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.eth0.useDHCP = lib.mkDefault true;
# networking.interfaces.tailscale0.useDHCP = lib.mkDefault true;
networking.firewall.allowedTCPPorts = [ 53 80 443 ];
networking.firewall.allowedTCPPorts = [53 80 443];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
@ -188,7 +188,6 @@ in {
domain = "monitor.tristans.cloud";
http_port = 3001; # forgejo and grafana default to 3000
};
services.forgejo.settings.server.DOMAIN = "git.tristans.cloud";
services.forgejo.settings.server.DOMAIN = "git.tristans.cloud";
}