[tohru] Username change: bluebird -> qenya

This commit is contained in:
Katherina Walshe-Grey 2024-06-05 16:11:54 +01:00
parent 0908d7a2c8
commit 3ca50c6d17
2 changed files with 6 additions and 7 deletions

View file

@ -1,10 +1,9 @@
{ config, lib, pkgs, ... }:
{
users.users.bluebird = {
users.users.qenya = {
isNormalUser = true;
home = "/home/bluebird";
description = "Bluebird";
home = "/home/qenya";
extraGroups = [
"wheel" # sudo
"networkmanager" # UI wifi configuration
@ -18,8 +17,8 @@
];
};
home-manager.users.bluebird = { pkgs, ... }: {
home.homeDirectory = config.users.users.bluebird.home;
home-manager.users.qenya = { pkgs, ... }: {
home.homeDirectory = config.users.users.qenya.home;
home.packages = with pkgs; [
fortune
@ -37,7 +36,7 @@
backgroundOptions = {
color-shading-type = "solid";
picture-options = "zoom";
picture-uri = "${config.users.users.bluebird.home}/.background-image";
picture-uri = "${config.users.users.qenya.home}/.background-image";
primary-color = "#3a4ba0";
secondary-color = "#2f302f";
};

View file

@ -18,7 +18,7 @@
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJEmkV9arotms79lJPsLHkdzAac4eu3pYS08ym0sB/on bluebird@tohru"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJEmkV9arotms79lJPsLHkdzAac4eu3pYS08ym0sB/on qenya@tohru"
];
};