system/hosts/istal/configuration.nix

14 lines
242 B
Nix
Raw Normal View History

2024-04-16 02:51:46 +03:00
{ globalData, ... }:
{
imports = [
./hardware-configuration
./services
];
networking.hostName = "istal";
networking.domain = "local";
users.users.root.openssh.authorizedKeys.keys = globalData.publicKeys.users.janistal;
}