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

22 lines
395 B
Nix
Raw Normal View History

2023-07-04 08:53:01 +00:00
{ pkgs, ... }: {
users = {
mutableUsers = false;
users = {
user = {
isNormalUser = true;
description = "Default user";
extraGroups = [
"networkmanager"
"wheel"
"input"
"video"
"kvm"
2023-07-14 08:13:25 +00:00
"keyd"
2023-07-04 08:53:01 +00:00
];
hashedPassword = ""; # Login directly
shell = pkgs.zsh;
};
};
2023-07-04 08:53:01 +00:00
};
}