sbc-deploys/modules/shared/default.nix

24 lines
581 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;
2023-05-08 18:43:41 +00:00
environment.systemPackages = with pkgs; [ bottom cryptsetup git htop screen ];
2023-03-14 03:53:06 +00:00
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
};
sops = {
age.keyFile = "/home/asonix/.config/sops/age/keys.txt";
age.generateKey = true;
};
}