mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 11:45:06 +01:00
change name
This commit is contained in:
parent
0abf971295
commit
c8f641f22d
3 changed files with 7 additions and 5 deletions
|
|
@ -38,7 +38,7 @@
|
|||
{
|
||||
home-manager.useGlobalPkgs = 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; };
|
||||
}
|
||||
];
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ in
|
|||
];
|
||||
|
||||
home = {
|
||||
username = "nils";
|
||||
username = "nora";
|
||||
homeDirectory = "/home/nils";
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -196,8 +196,10 @@ in
|
|||
# TODO: Configure your system-wide user settings (groups, etc), add more users as needed.
|
||||
users = {
|
||||
users = {
|
||||
nils = {
|
||||
isNormalUser = true;
|
||||
nora = {
|
||||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
home = "/home/nils";
|
||||
openssh.authorizedKeys.keys = [
|
||||
# TODO: Add your SSH public key(s) here, if you plan on using SSH to connect
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0n1ikUG9rYqobh7WpAyXrqZqxQoQ2zNJrFPj12gTpP"
|
||||
|
|
@ -211,7 +213,7 @@ in
|
|||
};
|
||||
extraGroups = {
|
||||
vboxusers = {
|
||||
members = [ "nils" ];
|
||||
#members = [ "nils" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue