mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2024-12-04 19:40:07 +01:00
10 lines
159 B
Nix
10 lines
159 B
Nix
{pkgs, ...}:
|
||
|
||
{
|
||
users.users.danio = {
|
||
isNormalUser = true;
|
||
extraGroups = [ "drift" ]; # Enable ‘sudo’ for the user.
|
||
shell = pkgs.zsh;
|
||
};
|
||
}
|