NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(hosts/stellapent-cier): update partition UUID for root due to a fresh reinstall

Also add another partition to mount for Alpine Linux chroot stuff

Signed-off-by: ajhalili2006 <ajhalili2006@gmail.com>

+6 -1
+6 -1
hosts/stellapent-cier/hardware-configuration.nix
··· 14 14 boot.extraModulePackages = [ ]; 15 15 16 16 fileSystems."/" = 17 - { device = "/dev/disk/by-uuid/09170382-8b7e-47cc-8fde-d9035039b785"; 17 + { device = "/dev/disk/by-uuid/8e01edcc-4c43-4a97-9ce3-039aa0a200c2"; 18 18 fsType = "ext4"; 19 19 }; 20 20 ··· 31 31 32 32 fileSystems."/workspaces" = 33 33 { device = "/dev/disk/by-uuid/a8d0810e-4bbf-479d-baea-28b1441ad68f"; 34 + fsType = "ext4"; 35 + }; 36 + 37 + fileSystems."/opt/alpine" = 38 + { device = "/dev/disk/by-uuid/0aa7134d-2dc1-41aa-9a2f-bdde0eeb93a1"; 34 39 fsType = "ext4"; 35 40 }; 36 41