diff options
author | ene <ene@sils.li> | 2023-02-21 15:06:58 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-21 15:06:58 +0100 |
commit | a7b4ae03f0f4767020b7ef1862ee3c89b569725a (patch) | |
tree | 78a38e0a92159730e39e61286bebac6ae183fb11 /hosts/mammun/hardware | |
parent | Fix(hosts): Update mammuns UUIDs (diff) | |
download | nixos-config-a7b4ae03f0f4767020b7ef1862ee3c89b569725a.tar.gz nixos-config-a7b4ae03f0f4767020b7ef1862ee3c89b569725a.zip |
Fix(hosts): Switch to direct names
This is obviously worse than uuids, but uuids just don't work for me right now and this should not be such a big problem.
Diffstat (limited to 'hosts/mammun/hardware')
-rw-r--r-- | hosts/mammun/hardware/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hosts/mammun/hardware/default.nix b/hosts/mammun/hardware/default.nix index 0b6544bb..78335389 100644 --- a/hosts/mammun/hardware/default.nix +++ b/hosts/mammun/hardware/default.nix @@ -15,8 +15,10 @@ system.fileSystemLayouts = { enable = true; - mainDisk = "/dev/disk/by-uuid/c8de0e7a-6e60-46bf-9244-75987a1e2780"; - efiDisk = "/dev/disk/by-uuid/BFBA-9E3F"; + mainDisk = "/dev/sda2"; + # mainDisk = "/dev/disk/by-uuid/c8de0e7a-6e60-46bf-9244-75987a1e2780"; + efiDisk = "/dev/sda1"; + # efiDisk = "/dev/disk/by-uuid/BFBA-9E3F"; }; boot = { |