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
Sense T 517bd51e33 1
2023-07-14 08:16:32 +00:00

26 lines
441 B
Nix

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