From 23e48d732f5434a3d917c3cb598023b403590264 Mon Sep 17 00:00:00 2001 From: TypoMustakes Date: Thu, 16 Apr 2026 01:30:19 +0200 Subject: [PATCH] Reinstalled laptop for fun --- hosts/Heracles/hardware-configuration.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hosts/Heracles/hardware-configuration.nix b/hosts/Heracles/hardware-configuration.nix index 475b508..9403859 100644 --- a/hosts/Heracles/hardware-configuration.nix +++ b/hosts/Heracles/hardware-configuration.nix @@ -14,21 +14,21 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/59a97eab-9251-485c-a297-541618197680"; + { device = "/dev/disk/by-uuid/633703b9-81c0-4d2b-9829-e5e92b2778be"; fsType = "ext4"; }; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/91F8-889D"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + fileSystems."/home" = { device = "/dev/disk/by-uuid/dffd60ce-8d81-495e-8e60-9b985d39f15e"; fsType = "ext4"; }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/C1A0-08A8"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; - swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";