13 lines
242 B
Nix
13 lines
242 B
Nix
{ globalData, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration
|
|
./services
|
|
];
|
|
|
|
networking.hostName = "istal";
|
|
networking.domain = "local";
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = globalData.publicKeys.users.janistal;
|
|
}
|