This repository has been archived on 2024-10-19. You can view files and clone it, but cannot push or open issues or pull requests.
server-nixos-config/jimbo.nix

21 lines
431 B
Nix
Raw Normal View History

2024-08-27 17:57:17 -04:00
{pkgs, ...}: let
secrets = import ./secrets.nix;
in {
# Define a user account. Don't forget to set a password with passwd.
users.users.jimbo = {
description = "Jimbo";
isNormalUser = true;
2024-08-27 17:57:17 -04:00
openssh.authorizedKeys.keys = secrets.jimKeys;
extraGroups = [
"networkmanager"
"wheel"
"nginx"
2024-09-27 16:05:28 -04:00
"nfsShare"
];
2024-08-27 17:57:17 -04:00
shell = pkgs.zsh;
};
2024-08-27 17:57:17 -04:00
# Enable ZSH
programs.zsh.enable = true;
}