mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
7 lines
216 B
Nix
7 lines
216 B
Nix
{ lib, config, pkgs, ...}: {
|
|
users.users.crow = lib.mkIf config.users.crow.enable {
|
|
isNormalUser = true;
|
|
initialPassword = "changeme";
|
|
extraGroups = [ "wheel" "networkmanager" ];
|
|
};
|
|
}
|