From f25c59178c7a1b3b60aaf930dc280c6e4531227b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Fri, 6 Jan 2023 12:28:12 +0100 Subject: [PATCH] manakish: new sd card --- systems/manakish/hardware-configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/systems/manakish/hardware-configuration.nix b/systems/manakish/hardware-configuration.nix index 1d0c94a..4802f05 100644 --- a/systems/manakish/hardware-configuration.nix +++ b/systems/manakish/hardware-configuration.nix @@ -34,6 +34,11 @@ device = "/dev/disk/by-uuid/D4AC-91B0"; fsType = "vfat"; }; + "/mnt/sd-card" = { + device = "/dev/disk/by-id/mmc-5E4S5_0x4c585d15-part1"; + fsType = "ext4"; + options = ["nofail"]; + }; }; swapDevices = [];