diff --git a/nixosConfigurations/hosts/disko/mini-pc.nix b/nixosConfigurations/hosts/disko/mini-pc.nix index d5cb425..41831eb 100755 --- a/nixosConfigurations/hosts/disko/mini-pc.nix +++ b/nixosConfigurations/hosts/disko/mini-pc.nix @@ -1,4 +1,4 @@ -{ xlib, ...}: +{ xlib, ... }: { disko.devices = { disk = { @@ -28,9 +28,9 @@ type = "filesystem"; format = "ext4"; mountpoint = "/"; - extraArgs = [ - "-L ${xlib.device.hostname}" # Filesystem label - ]; + # extraArgs = [ + # "-L ${xlib.device.hostname}" # Filesystem label + # ]; }; }; swap = { diff --git a/nixosConfigurations/hosts/hardware/mini-pc.nix b/nixosConfigurations/hosts/hardware/mini-pc.nix index 96374cf..47d9656 100755 --- a/nixosConfigurations/hosts/hardware/mini-pc.nix +++ b/nixosConfigurations/hosts/hardware/mini-pc.nix @@ -59,7 +59,7 @@ fileSystems = { "/" = { - device = "/dev/disk/by-partlabel/${xlib.device.hostname}"; + device = "/dev/disk/by-partlabel/disk-${xlib.device.hostname}-root"; fsType = "ext4"; }; "/boot" = {