vanadium: doas allow framework_tool without password

This commit is contained in:
Primrose 2026-01-02 00:48:16 +01:00
parent 64bb005082
commit 2c424bf878
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -19,4 +19,12 @@
# https://discourse.nixos.org/t/how-do-i-get-my-aarch64-linux-machine-to-build-x86-64-linux-extra-platforms-doesnt-seem-to-work/38106/2?u=leana8959 # https://discourse.nixos.org/t/how-do-i-get-my-aarch64-linux-machine-to-build-x86-64-linux-extra-platforms-doesnt-seem-to-work/38106/2?u=leana8959
boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems; nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
security.doas.extraRules = [
{
users = [ ":wheel" ];
cmd = "framework_tool";
noPass = true;
}
];
} }