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