flake/nixos/profiles/server/default.nix

13 lines
251 B
Nix
Raw Normal View History

2024-08-01 22:17:30 +00:00
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
alacritty.terminfo
kitty.terminfo
foot.terminfo
tmux.terminfo
wezterm.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";
2023-12-30 14:41:46 +00:00
}