From 6c0f338f8f2cc12c7ccdfd60e257329c0294c883 Mon Sep 17 00:00:00 2001 From: Stefan Kempinger Date: Fri, 27 Mar 2026 12:40:46 +0100 Subject: [PATCH] add th pubkey --- lnf/configuration.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lnf/configuration.nix b/lnf/configuration.nix index 788b196..88f542b 100644 --- a/lnf/configuration.nix +++ b/lnf/configuration.nix @@ -37,18 +37,20 @@ }; console.keyMap = "de"; - users.users.kemp = { + users.users.user = { isNormalUser = true; description = "user"; extraGroups = [ "networkmanager" "wheel" "video" ]; packages = with pkgs; [ ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINGHadFhDCUU/ta3p1FQgpm7NExHkyHNrJbNJP6np5w9 kempinger@ins.jku.at" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMTpZThOE2EeDZ1rS7ynLS3mGtoSIQ9WazZDBUdP9THi tth@tth-worker" ]; }; users.users.root = { openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINGHadFhDCUU/ta3p1FQgpm7NExHkyHNrJbNJP6np5w9 kempinger@ins.jku.at" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMTpZThOE2EeDZ1rS7ynLS3mGtoSIQ9WazZDBUdP9THi tth@tth-worker" ]; }; @@ -185,13 +187,13 @@ WLR_NO_HARDWARE_CURSORS = "1"; }; - # ── greetd: replaces cage, autologins kemp and starts sway ───────────────── + # ── greetd: replaces cage, autologins user and starts sway ───────────────── services.greetd = { enable = true; settings = { default_session = { command = "${pkgs.sway}/bin/sway --config /etc/sway/kiosk.conf"; - user = "kemp"; + user = "user"; }; }; };