From 94f5986df66f598f017f433ba4ed56ef6fc2c814 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Wed, 26 Jul 2023 01:43:52 -0700 Subject: [PATCH] Fix removable disks in dolphin --- modules/system.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/system.nix b/modules/system.nix index 8dd7ff2..aeac44b 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -39,5 +39,7 @@ ''; }; + # removable disks in file manager + services.udisks2.enable = true; ]; }