flake/nixos/profiles/server/default.nix

18 lines
327 B
Nix
Raw Normal View History

2024-08-23 08:10:31 +00:00
{
pkgs,
config,
...
}:
{
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";
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
}