blob: c7dc52bcb4aeb070923393a249a349d29f1d1592 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ config, ... }:
let
user = config.userdata.user;
in
{
imports = [
./hardware-configuration.nix
./modules/network.nix
../../common.nix
];
users.users.${user}.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILvR5FliFLq1FJWotnBk9deWmbeGi2uq2XVmx0uAr1Lw sinan@fscusat"
];
}
|