13 lines
206 B
Nix
13 lines
206 B
Nix
|
{ globalData, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration
|
||
|
./services
|
||
|
];
|
||
|
|
||
|
networking.hostName = "tatos";
|
||
|
|
||
|
users.users.root.openssh.authorizedKeys.keys = globalData.publicKeys.users.jan;
|
||
|
}
|