Add Franz SSH key

This commit is contained in:
GHOSCHT 2024-05-31 12:57:58 +02:00
parent 51a6f74c5f
commit 92a980dab2
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82

View file

@ -1,9 +1,10 @@
{ {
config,
pkgs, pkgs,
lib, lib,
... ...
}: { }: let
vars = import ../../vars.nix;
in {
# NixOS wants to enable GRUB by default # NixOS wants to enable GRUB by default
boot.loader.grub.enable = false; boot.loader.grub.enable = false;
# Enables the generation of /boot/extlinux/extlinux.conf # Enables the generation of /boot/extlinux/extlinux.conf
@ -55,7 +56,6 @@
neovim neovim
curl curl
wget wget
# docker-compose
]; ];
services.openssh = { services.openssh = {
@ -90,27 +90,20 @@
# put your own configuration here, for example ssh keys: # put your own configuration here, for example ssh keys:
users.mutableUsers = true; users.mutableUsers = true;
users.groups = { users.users.${vars.user} = {
nixos = { isNormalUser = true;
gid = 1000; password = "changeme";
name = "nixos"; extraGroups = ["wheel" "docker"];
}; openssh.authorizedKeys.keys = [
}; #Adalbert
users.users = { "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJd6Gut34abkwlZ4tZVBO4Qt7CkIpPm/Z8R6JCisjnYy openpgp:0xBD0CFCA0"
nixos = {
uid = 1000;
home = "/home/nixos";
name = "nixos";
group = "nixos";
extraGroups = ["wheel" "docker"];
};
};
users.users.root.openssh.authorizedKeys.keys = [
#Desktop
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJd6Gut34abkwlZ4tZVBO4Qt7CkIpPm/Z8R6JCisjnYy openpgp:0xBD0CFCA0"
#Convertible #Ludwig
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFlRsnLqm6Ap3yKEEhtFiWavo72df/X5Il1ZCmENUqev openpgp:0xDE189CA5" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFlRsnLqm6Ap3yKEEhtFiWavo72df/X5Il1ZCmENUqev openpgp:0xDE189CA5"
];
#Franz
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIINCjLoirHMos7c9lRatWtSYAk68xbUGc8vPU0wFxIzj openpgp:0x7430326E"
];
};
system.stateVersion = "23.11"; system.stateVersion = "23.11";
} }