Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add user for Samuli Leivo #309

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hosts/testagent/dev/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
user-jrautiola
user-mariia
user-maarit
user-leivos
user-hrosten
]);

Expand Down
1 change: 1 addition & 0 deletions hosts/testagent/prod/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
user-jrautiola
user-mariia
user-maarit
user-leivos
user-hrosten
]);

Expand Down
1 change: 1 addition & 0 deletions hosts/testagent/release/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
user-jrautiola
user-mariia
user-maarit
user-leivos
user-hrosten
]);

Expand Down
1 change: 1 addition & 0 deletions users/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
user-vjuntunen = import ./vjuntunen.nix;
user-mariia = import ./mariia.nix;
user-maarit = import ./maarit.nix;
user-leivos = import ./leivos.nix;
user-vilvo = import ./vilvo.nix;
user-vunnyso = import ./vunnyso.nix;
user-bmg = import ./bmg.nix;
Expand Down
19 changes: 19 additions & 0 deletions users/leivos.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# SPDX-FileCopyrightText: 2022-2024 TII (SSRC) and the Ghaf contributors
# SPDX-License-Identifier: Apache-2.0
{
users.users = {
leivos = {
description = "Samuli Leivo";
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPE/CgI8MXyHiiUyt7BXWjQG1pb25b4N3als/dKKPZyD"
];
extraGroups = [
"networkmanager"
"wheel"
"dialout"
"tty"
];
};
};
}