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