about summary refs log tree commit diff
path: root/machines/profpatsch/mikiya.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-05-23 16:24:15 +0200
committerProfpatsch <mail@profpatsch.de>2018-05-23 16:24:15 +0200
commita720b4e04f9aa548ac6738379470b7fdb0bc3722 (patch)
treec3e6f20b7dbb0e5914bc26a8a13e15e542eaf72d /machines/profpatsch/mikiya.nix
parent7f09f19953c430f2e98091438cdc33bc67679674 (diff)
machines/mikiya: fix eval error & add /boot
Diffstat (limited to 'machines/profpatsch/mikiya.nix')
-rw-r--r--machines/profpatsch/mikiya.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/machines/profpatsch/mikiya.nix b/machines/profpatsch/mikiya.nix
index a6229f02..1d1d6c10 100644
--- a/machines/profpatsch/mikiya.nix
+++ b/machines/profpatsch/mikiya.nix
@@ -36,10 +36,10 @@ in {
           enable = true;
           ssh.enable = true;
           ssh.authorizedKeys = myLib.authKeys;
+        };
           availableKernelModules = [
             "ahci" "xhci_pci" "usb_storage" "usbhid" "sd_mod"
           ];
-        };
 
         # decrypt root device
         luks.devices = [systemPartition];
@@ -52,6 +52,11 @@ in {
       fsType = "ext4";
       options = [ "ssd" ];
     };
+    fileSystems."/boot" = {
+      device = "/dev/disk/by-uuid/9aa38aa7-652f-4762-a0c2-b70332b93f4d";
+      fsType = "ext3";
+    };
+
 
     nix.maxJobs = 4;