From 5a955870f809a7d24777f6e567d3334c3d383bab Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 18 Mar 2024 00:58:19 +0100 Subject: [PATCH] Enable automount on shodan for removable media --- nixos/hosts/shodan/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/hosts/shodan/configuration.nix b/nixos/hosts/shodan/configuration.nix index 279e89c..4fcc3c4 100644 --- a/nixos/hosts/shodan/configuration.nix +++ b/nixos/hosts/shodan/configuration.nix @@ -144,6 +144,10 @@ networking.firewall.allowedTCPPorts = [22]; + # Enable automounting of removable media + services.udisks2.enable = true; + services.devmon.enable = true; + # Set your time zone. time.timeZone = "Europe/Amsterdam";