nixedo: disable sudo-rs

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-11-04 01:57:02 +00:00
parent 297c8cd990
commit f7d7fc6c4d

View file

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ inputs, pkgs, ... }: { inputs, lib, pkgs, ... }:
{ {
imports = [ imports = [
@ -48,4 +48,6 @@
tree tree
vim vim
]; ];
security.sudo-rs.enable = lib.mkForce false;
} }