system/hosts/tatos/configuration.nix

15 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;
}