sbc-deploys/modules/shared/default.nix

25 lines
526 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
services.openssh.settings.PasswordAuthentication = false;
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
boot.loader.grub.enable = false;
# Enables the generation of /boot/extlinux/extlinux.conf
boot.loader.generic-extlinux-compatible.enable = true;
environment.systemPackages = with pkgs; [
bottom
cryptsetup
2023-01-27 07:19:05 +00:00
git
htop
2023-01-27 07:19:05 +00:00
neovim
2023-02-19 20:03:55 +00:00
screen
];
sops = {
age.keyFile = "/home/asonix/.config/sops/age/keys.txt";
age.generateKey = true;
};
}