2024-08-23 08:10:31 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
2024-08-25 15:02:35 +00:00
|
|
|
}:
|
|
|
|
{
|
2024-08-01 22:17:30 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
foot.terminfo
|
2023-12-30 14:41:46 +00:00
|
|
|
];
|
2024-08-01 22:17:30 +00:00
|
|
|
|
|
|
|
# TODO: colmena
|
|
|
|
services.openssh.settings.PermitRootLogin = "prohibit-password";
|
2024-08-25 15:02:35 +00:00
|
|
|
users.users."root".openssh.authorizedKeys.keys =
|
|
|
|
config.users.users.guanranwang.openssh.authorizedKeys.keys;
|
2024-08-23 08:10:31 +00:00
|
|
|
|
|
|
|
time.timeZone = "UTC";
|
2023-12-30 14:41:46 +00:00
|
|
|
}
|