From 30fac0f9b9075fa14107b884bcc670a79085e24d Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 29 Oct 2024 18:17:06 +0000 Subject: [PATCH] Tweak order of git service --- hosts/linode/git.nix | 4 ++++ hosts/linode/hardware-configuration.nix | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/linode/git.nix b/hosts/linode/git.nix index 64ab313..cc3e1b8 100644 --- a/hosts/linode/git.nix +++ b/hosts/linode/git.nix @@ -23,6 +23,10 @@ in networking.firewall.allowedTCPPorts = [ sshPort ]; + systemd.services.haproxy = { + after = [ "sys-devices-virtual-net-tailscale0.device" ]; + }; + services.haproxy = { enable = true; config = builtins.concatStringsSep "\n" [ diff --git a/hosts/linode/hardware-configuration.nix b/hosts/linode/hardware-configuration.nix index 302e5f0..d9908a1 100644 --- a/hosts/linode/hardware-configuration.nix +++ b/hosts/linode/hardware-configuration.nix @@ -22,7 +22,7 @@ boot.extraModulePackages = [ ]; fileSystems."/" = { - device = "/dev/sda"; + device = "/dev/disk/by-uuid/fd2d8348-d52a-4859-80b6-4308b2e9cc22"; fsType = "ext4"; };