flake/nixos/profiles/server/default.nix

16 lines
323 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";
2024-08-23 08:10:31 +00:00
users.users."root".openssh.authorizedKeys.keys = config.users.users.guanranwang.openssh.authorizedKeys.keys;
time.timeZone = "UTC";
2023-12-30 14:41:46 +00:00
}