nixos

NixOS server files. Mirror from https://git.nordgedanken.dev/kubernetes/nixos
git clone git://archive.git.mtrnord.blog/MTRNord/nixos.git
Log | Files | Refs | README

commit a94a7f4ce3e32c0eaaf55059caf420359f25386d
parent a007dd18d63edb744dc28ebd043fdbc1444a3949
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed,  9 Aug 2023 13:30:07 +0200

Fix partions again

Diffstat:
Mnixos/worker-1/hardware-configuration.nix | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/nixos/worker-1/hardware-configuration.nix b/nixos/worker-1/hardware-configuration.nix @@ -16,7 +16,7 @@ fileSystems."/" = { - device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; + device = "/dev/disk/by-uuid/2dd0146f-acd1-4d76-a353-9f4cf7721972"; fsType = "btrfs"; options = [ "subvol=root" "compress=zstd" "noatime" ]; }; @@ -25,28 +25,28 @@ fileSystems."/home" = { - device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; + device = "/dev/disk/by-uuid/2dd0146f-acd1-4d76-a353-9f4cf7721972"; fsType = "btrfs"; options = [ "subvol=home" "compress=zstd" "noatime" ]; }; fileSystems."/nix" = { - device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; + device = "/dev/disk/by-uuid/2dd0146f-acd1-4d76-a353-9f4cf7721972"; fsType = "btrfs"; options = [ "subvol=nix" "compress=zstd" "noatime" ]; }; fileSystems."/persist" = { - device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; + device = "/dev/disk/by-uuid/2dd0146f-acd1-4d76-a353-9f4cf7721972"; fsType = "btrfs"; options = [ "subvol=persist" "compress=zstd" "noatime" ]; }; fileSystems."/var/log" = { - device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; + device = "/dev/disk/by-uuid/2dd0146f-acd1-4d76-a353-9f4cf7721972"; fsType = "btrfs"; options = [ "subvol=log" "compress=zstd" "noatime" ]; neededForBoot = true; @@ -54,7 +54,7 @@ fileSystems."/boot" = { - device = "/dev/disk/by-label/boot"; + device = "/dev/disk/by-uuid/840B-723D"; fsType = "vfat"; };