nixos-config/users/fleaz.nix

14 lines
436 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2022-01-25 00:31:56 +00:00
users.users.fleaz = {
isNormalUser = true;
extraGroups = [
2022-02-23 22:42:42 +00:00
"wheel" # Enable sudo for the user.
"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-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
};
}