14 lines
242 B
Nix
14 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;
|
||
|
}
|