about summary refs log tree commit diff
path: root/users/tazjin/nixos/tverskoy/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-04-04T13·05+0200
committertazjin <mail@tazj.in>2021-04-04T18·25+0000
commitaae387456a7604834d463c305d9899516ec4513c (patch)
tree7e0ba5b796e48a563f94a081ac42fa38312e904c /users/tazjin/nixos/tverskoy/default.nix
parente7c78570ed66cd753add2664b7545d234c947b84 (diff)
chore(tazjin/tverskoy): Mount SD card on boot r/2435
Change-Id: Ifab7ec411f8dbd932aeee15d45ebd53e24917d04
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2846
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin/nixos/tverskoy/default.nix')
-rw-r--r--users/tazjin/nixos/tverskoy/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix
index d1dabf79c2..54f1afa510 100644
--- a/users/tazjin/nixos/tverskoy/default.nix
+++ b/users/tazjin/nixos/tverskoy/default.nix
@@ -81,6 +81,12 @@ in lib.fix(self: {
       neededForBoot = true;
     };
 
+    # SD card
+    "/mnt" = {
+      device = "/dev/disk/by-uuid/c602d703-f1b9-4a44-9e45-94dfe24bdaa8";
+      fsType = "ext4";
+    };
+
     "/boot" = {
       device = "/dev/disk/by-uuid/BF4F-388B";
       fsType = "vfat";