9 lines
172 B
Nix
9 lines
172 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
flake.modules.nixos.pc = {
|
|
security.sudo-rs.enable = true;
|
|
|
|
users.users.${config.flake.meta.owner.username}.extraGroups = [ "wheel" ];
|
|
};
|
|
}
|