diff options
| author | Kleidi Bujari <mail@4kb.net> | 2025-08-31 20:54:16 -0700 |
|---|---|---|
| committer | Kleidi Bujari <mail@4kb.net> | 2025-08-31 20:54:16 -0700 |
| commit | d097939297173103b143116221e971391f21d032 (patch) | |
| tree | 316176756469b4826fa497204c360fd7b048221d | |
| parent | 716c0d70ef85bd67c1dbedc32e16aa0317670ca4 (diff) | |
| download | depot-d097939297173103b143116221e971391f21d032.tar.gz depot-d097939297173103b143116221e971391f21d032.tar.bz2 depot-d097939297173103b143116221e971391f21d032.zip | |
automount devices in /media rather than /run/media/$USER
| -rw-r--r-- | modules/desktop.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/desktop.nix b/modules/desktop.nix index 9b656aa..a24397e 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -191,7 +191,10 @@ in yubikey-agent.enable = true; pcscd.enable = true; udev.packages = with pkgs; [ yubikey-personalization ]; - udisks2.enable = true; + udisks2 = { + enable = true; + mountOnMedia = true; + }; }; programs.firefox = { |
