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 tervis to all hosts #42

Merged
merged 1 commit into from
Dec 20, 2023
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/binarycache/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
user-jrautiola
user-cazfi
user-hydra
user-tervis
])
./disk-config.nix
];
Expand Down
1 change: 1 addition & 0 deletions hosts/ficolobuild/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
user-jrautiola
user-mkaapu
user-themisto
user-tervis
])
./disk-config.nix
];
Expand Down
1 change: 1 addition & 0 deletions hosts/ghafhydra/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
service-nginx
user-bmg
user-hrosten
user-tervis
])
];

Expand Down
1 change: 1 addition & 0 deletions hosts/monitoring/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ in {
service-nginx
service-node-exporter
user-jrautiola
user-tervis
])
./disk-config.nix
];
Expand Down
1 change: 1 addition & 0 deletions hosts/prbuilder/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
user-jrautiola
user-cazfi
user-karim
user-tervis
])
./disk-config.nix
];
Expand Down
1 change: 1 addition & 0 deletions users/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
user-mkaapu = import ./mkaapu.nix;
user-karim = import ./karim.nix;
user-themisto = import ./themisto.nix;
user-tervis = import ./tervis.nix;
};
}
13 changes: 13 additions & 0 deletions users/tervis.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# SPDX-FileCopyrightText: 2023 Technology Innovation Institute (TII)
# SPDX-License-Identifier: Apache-2.0
{
users.users = {
tervis = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDJau0tg0qHhqFVarjNOJLi+ekSZNNqxal4iRD/pwM5W tervis@tervis-thinkpad"
];
extraGroups = ["wheel" "networkmanager" "docker"];
};
};
}