From 28cf319bc0c40f298cc10c4f8e153a185d3b6bd9 Mon Sep 17 00:00:00 2001 From: osbm Date: Mon, 13 Jan 2025 20:30:39 +0300 Subject: [PATCH] fix my username --- hosts/harmonica/configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/harmonica/configuration.nix b/hosts/harmonica/configuration.nix index 6e7c07a..b3eaf68 100644 --- a/hosts/harmonica/configuration.nix +++ b/hosts/harmonica/configuration.nix @@ -157,10 +157,10 @@ services.timesyncd.enable = true; # ! Change the following configuration - users.users.bob = { + users.users.osbm = { isNormalUser = true; - home = "/home/bob"; - description = "Bob"; + home = "/home/osbm"; + description = "osbm"; extraGroups = ["wheel" "networkmanager"]; # ! Be sure to put your own public key here openssh.authorizedKeys.keys = ["a public key"]; @@ -171,5 +171,5 @@ wheelNeedsPassword = false; }; # ! Be sure to change the autologinUser. - services.getty.autologinUser = "bob"; + services.getty.autologinUser = "osbm"; } \ No newline at end of file