Skip to content

Commit

Permalink
Add user tervis to all hosts
Browse files Browse the repository at this point in the history
Signed-off-by: Tero Tervala <[email protected]>
  • Loading branch information
tervis-unikie committed Dec 20, 2023
1 parent 698b378 commit 490f84c
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 0 deletions.
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"];
};
};
}

0 comments on commit 490f84c

Please sign in to comment.