summaryrefslogtreecommitdiffstats
path: root/udiskie.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-18 15:40:09 -0400
committerAndrew <admonty1@protonmail.com>2025-08-18 15:40:09 -0400
commit16c0b7ce0cf0a6286554a3bbe60c636871fb75c9 (patch)
treeef38bd560f9c08121c4c567997a22359c22b7582 /udiskie.nix
downloadnixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.tar.gz
nixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.tar.bz2
nixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.zip
initial commit
Diffstat (limited to '')
-rw-r--r--udiskie.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/udiskie.nix b/udiskie.nix
new file mode 100644
index 0000000..3b354c0
--- /dev/null
+++ b/udiskie.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, ... }:
+
+{
+ # automount
+ services.udiskie = {
+ enable = true;
+ tray = "auto";
+ notify = true;
+ automount = true;
+ };
+}