14 lines
243 B
Nix
14 lines
243 B
Nix
{ globalData, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration
|
|
./services
|
|
];
|
|
|
|
local.system.kernel = "hardened";
|
|
|
|
networking.hostName = "tatos";
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = globalData.publicKeys.users.jan;
|
|
}
|