From f7d7fc6c4d85a76bcde19466beba556c2d83d0cf Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 4 Nov 2025 01:57:02 +0000 Subject: [PATCH] nixedo: disable sudo-rs Signed-off-by: Oliver Davies --- hosts/nixedo/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/nixedo/configuration.nix b/hosts/nixedo/configuration.nix index 88d3920c..c37d83bd 100644 --- a/hosts/nixedo/configuration.nix +++ b/hosts/nixedo/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ inputs, pkgs, ... }: +{ inputs, lib, pkgs, ... }: { imports = [ @@ -48,4 +48,6 @@ tree vim ]; + + security.sudo-rs.enable = lib.mkForce false; }