add julia to lucy
Lint / lint (push) Failing after 1m38s Details
Plex Update / update (push) Successful in 1m56s Details

reboot
Vivian 2023-12-23 21:33:16 +01:00
parent dbf9e9966a
commit c52a38b9e5
1 changed files with 14 additions and 6 deletions

View File

@ -24,8 +24,7 @@ let
doCheck = false;
};
in
{
in {
imports = [ ./hardware-configuration.nix ];
# This value determines the NixOS release from which the default
@ -37,10 +36,7 @@ in
system.stateVersion = "23.05"; # Did you read the comment?
# Additional packages
environment.systemPackages = with pkgs; [
jq
jre_minimal
];
environment.systemPackages = with pkgs; [ jq wget jre8 ];
boot.loader = {
systemd-boot.enable = true;
@ -54,4 +50,16 @@ in
};
users.extraUsers.laura.extraGroups = [ "wheel" ];
users.groups.mc = { };
users.extraUsers.julia = {
isNormalUser = true;
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKTvqk+CJG4VwN8wg3H1ZdbUVj1JuX7RYKH1ewRKfCPv julia@juliadijkstraarch"
];
extraGroups = [ "mc" "wheel" ];
};
}