2022-01-28 14:43:37 +00:00
|
|
|
|
{ pkgs, ... }: {
|
2022-01-25 00:31:56 +00:00
|
|
|
|
users.users.fleaz = {
|
|
|
|
|
isNormalUser = true;
|
2022-02-03 10:09:29 +00:00
|
|
|
|
extraGroups = [
|
2022-02-23 22:42:42 +00:00
|
|
|
|
"wheel" # Enable ‘sudo’ for the user.
|
2022-02-03 10:09:29 +00:00
|
|
|
|
"networkmanager" # Access to networkmanager
|
2022-02-23 22:42:42 +00:00
|
|
|
|
"docker" # Access to the "/run/docker.sock"
|
2022-06-15 18:35:18 +00:00
|
|
|
|
"dialup" # for serial access
|
2022-02-03 10:09:29 +00:00
|
|
|
|
];
|
2022-01-28 14:34:49 +00:00
|
|
|
|
shell = pkgs.zsh;
|
2022-02-06 22:30:22 +00:00
|
|
|
|
hashedPassword = "$6$9dARC6e2RxgPC9f1$QfXpT71cXA7YiFhv75Nnq2OrbQ8xlHMzgrJdaBaETaAVHLX5j8QUAl71dxMlqD.CtTLxe566kL5Q6da7Kqnvp/";
|
2022-01-25 00:31:56 +00:00
|
|
|
|
};
|
|
|
|
|
}
|