my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

security/sudo: don't pull in nixos-rebuild

isabel 191c206c ac2a5c53

+7 -2
+7 -2
modules/nixos/security/sudo.nix
··· 1 - { lib, pkgs, ... }: 1 + { 2 + lib, 3 + pkgs, 4 + config, 5 + ... 6 + }: 2 7 let 3 8 inherit (lib) mkForce mkDefault getExe'; 4 9 in ··· 32 37 commands = [ 33 38 # try to make nixos-rebuild work without password 34 39 { 35 - command = getExe' pkgs.nixos-rebuild "nixos-rebuild"; 40 + command = getExe' config.system.build.nixos-rebuild "nixos-rebuild"; 36 41 options = [ "NOPASSWD" ]; 37 42 } 38 43