This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/global/user-configuration.nix
2023-06-27 10:44:31 +08:00

20 lines
501 B
Nix

{pkgs, ...}: {
users= {
mutableUsers = false;
users = {
user = {
isNormalUser = true;
description = "Default user";
extraGroups = [
"networkmanager"
"wheel"
"input"
"video"
"kvm"
];
hashedPassword = ""; # Login directly
shell = pkgs.zsh;
};
};
};
}