From 7ac00f24174a6e5fad8896cdf756ae387e993408 Mon Sep 17 00:00:00 2001 From: Lulusilly Date: Sat, 6 Dec 2025 01:17:04 -0400 Subject: [PATCH] Re-enabled sudo for nixos-rebuild compatibility --- .config/nix/hosts/common.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/nix/hosts/common.nix b/.config/nix/hosts/common.nix index 69d616e..c4f2fd0 100644 --- a/.config/nix/hosts/common.nix +++ b/.config/nix/hosts/common.nix @@ -52,7 +52,7 @@ layout = "us"; variant = ""; }; - enviroment.systemPackages = with pkgs; [ + environment.systemPackages = with pkgs; [ git ]; # Zsh @@ -76,8 +76,8 @@ ]; # Enable udisks2 for removable media support services.udisks2.enable = true; - # Disable sudo - security.sudo.enable = false; + # Can't disable sudo due to dependency for nixos-rebuild + # security.sudo.enable = false; # Setup doas security.doas = { enable = true;