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