configuration.nix/users/default.nix
2023-03-25 22:10:09 +05:30

16 lines
437 B
Nix

{pkgs, ...}: let
user = import ./user.nix;
in {
users.mutableUsers = false;
users.users = {
root.hashedPassword = user.root.hashedPassword;
"${user.primary.userName}" = {
uid = 1000;
hashedPassword = user.primary.hashedPassword;
description = user.primary.realName;
isNormalUser = true;
extraGroups = ["docker" "libvirtd" "networkmanager" "tss" "wheel"];
shell = pkgs.zsh;
};
};
}