From 5ac04520636fd2e1e8d82a8b7480d3366f7148c5 Mon Sep 17 00:00:00 2001 From: Quentin Boyer Date: Fri, 2 May 2025 17:02:28 +0200 Subject: [PATCH] personal-gui: Automount DSLR --- personal-gui/nixos.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/personal-gui/nixos.nix b/personal-gui/nixos.nix index 437d7da..a0b71ce 100644 --- a/personal-gui/nixos.nix +++ b/personal-gui/nixos.nix @@ -19,6 +19,15 @@ ]; }; + fileSystems."/home/traxys/Photos/D3500" = { + device = "/dev/disk/by-label/NIKON\\x20D3500"; + options = [ + "defaults" + "noauto" + "x-systemd.automount" + ]; + }; + hardware.keyboard.qmk.enable = true; programs.adb.enable = true;