sbc-deploys/modules/shared/default.nix
2023-03-13 22:53:06 -05:00

29 lines
603 B
Nix

{ 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
git
htop
screen
];
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
};
sops = {
age.keyFile = "/home/asonix/.config/sops/age/keys.txt";
age.generateKey = true;
};
}