change name

This commit is contained in:
nora 2024-05-25 20:13:07 +02:00
parent 0abf971295
commit c8f641f22d
3 changed files with 7 additions and 5 deletions

View file

@ -38,7 +38,7 @@
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.nils = import ./home-manager/desktop.nix; home-manager.users.nora = import ./home-manager/desktop.nix;
home-manager.extraSpecialArgs = { inherit inputs; }; home-manager.extraSpecialArgs = { inherit inputs; };
} }
]; ];

View file

@ -23,7 +23,7 @@ in
]; ];
home = { home = {
username = "nils"; username = "nora";
homeDirectory = "/home/nils"; homeDirectory = "/home/nils";
}; };

View file

@ -196,8 +196,10 @@ in
# TODO: Configure your system-wide user settings (groups, etc), add more users as needed. # TODO: Configure your system-wide user settings (groups, etc), add more users as needed.
users = { users = {
users = { users = {
nils = { nora = {
uid = 1000;
isNormalUser = true; isNormalUser = true;
home = "/home/nils";
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
# TODO: Add your SSH public key(s) here, if you plan on using SSH to connect # TODO: Add your SSH public key(s) here, if you plan on using SSH to connect
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0n1ikUG9rYqobh7WpAyXrqZqxQoQ2zNJrFPj12gTpP" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0n1ikUG9rYqobh7WpAyXrqZqxQoQ2zNJrFPj12gTpP"
@ -211,7 +213,7 @@ in
}; };
extraGroups = { extraGroups = {
vboxusers = { vboxusers = {
members = [ "nils" ]; #members = [ "nils" ];
}; };
}; };
}; };