She’s there to meet her girlfriend who’s a teacher at elementary school
She’s there to meet her girlfriend who’s a teacher at elementary school
I recently dual booted NixOS with Linux Mint and mounted /boot partition of NixOS to /boot/efi partition of Linux Mint (since it says on the wiki that NixOS uses UEFI partition as /boot directory). I didn’t have any issue since I was using systemd-boot. Did you mount the partitions correctly?
deleted by creator
I got this working with security.sudo.extraConfig
{config, pkgs, ... }:
{ ...
security.sudo.extraConfig = ''
# Allow wheel group to run specific commands without a password
%wheel ALL=(ALL) NOPASSWD: /run/current-system/sw/bin/cryptsetup
%wheel ALL=(ALL) NOPASSWD: /run/wrappers/bin/mount
'';
...
}
thanks, but I don’t wanna disable sudo password. I only want certain commands to be accessible without password.
Could you provide the source?