summaryrefslogtreecommitdiff
path: root/host/obelix.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2020-04-22 14:22:39 +0200
committerAdrian Kummerlaender2020-04-22 14:22:39 +0200
commite9da2bdac9dd61d29e85bb30bd7c953cc2a85474 (patch)
tree6855fb38abe1eef42742c2ecf9501d919e7ecab7 /host/obelix.nix
parent3d1c366d72593ca171445e3da337f4c5dfa7f47d (diff)
downloadnixos_system-e9da2bdac9dd61d29e85bb30bd7c953cc2a85474.tar
nixos_system-e9da2bdac9dd61d29e85bb30bd7c953cc2a85474.tar.gz
nixos_system-e9da2bdac9dd61d29e85bb30bd7c953cc2a85474.tar.bz2
nixos_system-e9da2bdac9dd61d29e85bb30bd7c953cc2a85474.tar.lz
nixos_system-e9da2bdac9dd61d29e85bb30bd7c953cc2a85474.tar.xz
nixos_system-e9da2bdac9dd61d29e85bb30bd7c953cc2a85474.tar.zst
nixos_system-e9da2bdac9dd61d29e85bb30bd7c953cc2a85474.zip
Adapt to 20.03 update
Diffstat (limited to 'host/obelix.nix')
-rw-r--r--host/obelix.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/host/obelix.nix b/host/obelix.nix
index c922cea..583fbde 100644
--- a/host/obelix.nix
+++ b/host/obelix.nix
@@ -10,18 +10,19 @@
loader.grub = {
enable = true;
version = 2;
- device = "/dev/sdb";
+ device = "/dev/sda";
extraConfig = ''
set gfxpayload=1920x1200x32
'';
};
- initrd.luks.devices = [ {
- name = "root";
- device = "/dev/disk/by-uuid/6205da24-b1b2-402c-b175-4036e678dea9";
- preLVM = true;
- allowDiscards = true;
- } ];
+ initrd.luks.devices = {
+ root = {
+ device = "/dev/disk/by-uuid/6205da24-b1b2-402c-b175-4036e678dea9";
+ preLVM = true;
+ allowDiscards = true;
+ };
+ };
};
networking = {