dotfiles/nixos/common/users.nix
magic_rb aff0158ef7
Reformat the whole flake using alejandra
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-02 22:17:03 +01:00

24 lines
529 B
Nix

{secret, ...}: {
users = {
mutableUsers = false;
users.root.hashedPassword = secret.passwordHashes.main or "";
users.main = {
isNormalUser = true;
home = "/home/main";
hashedPassword = secret.passwordHashes.main or "";
description = "main";
uid = 1000;
extraGroups = ["wheel" "audio"];
openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFVkFvalffJ/SMjJGG3WPiqCqFygnWzhGUaeALBIoCsJ (none)"];
};
groups.main = {
gid = 1000;
};
};
}