From d8edbb23b0760d9f80ed9522b64c301c88fb8e2a Mon Sep 17 00:00:00 2001 From: Matt Nish-Lapidus Date: Tue, 15 Apr 2025 11:24:21 -0400 Subject: [PATCH] wheel --- hosts/media-server/configuration.nix | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/hosts/media-server/configuration.nix b/hosts/media-server/configuration.nix index 597450e..12edab5 100644 --- a/hosts/media-server/configuration.nix +++ b/hosts/media-server/configuration.nix @@ -65,6 +65,11 @@ # Set your time zone. time.timeZone = "America/Toronto"; + security.sudo = { + enable = true; + wheelNeedsPassword = false; + }; + users.users.media = { isNormalUser = true; extraGroups = [ "wheel" "input" "audio" "video" "network" "networkmanager" ]; @@ -164,18 +169,6 @@ services.tailscale.enable = true; systemd.services.tailscaled.after = [ "NetworkManager-wait-online.service" ]; -# services.caddy = { -# enable = true; -# virtualHosts = { -# "media-server" = { -# serverAliases = [ "media-server" "media-server.local" ]; -# extraConfig = '' -# reverse_proxy localhost:3000 -# ''; -# }; -# }; -# }; - nixarr = { enable = true;