nixos-config/nixos/self-ide.nix
Sridhar Ratnakumar a5c6e509c3 Unused args
2023-07-15 11:32:00 -04:00

14 lines
303 B
Nix

{ flake, ... }: {
# For no-prompt Ctrl+Shift+B in VSCode
security.sudo.extraRules = [
{
users = [ flake.config.people.myself ];
commands = [
{
command = "/run/current-system/sw/bin/nixos-rebuild";
options = [ "NOPASSWD" ];
}
];
}
];
}