infrastructure/nixos/hosts/hades/bastion/configuration.nix

30 lines
461 B
Nix
Raw Normal View History

2022-09-10 10:46:34 +02:00
{ config, pkgs, lib, ... }:
{
networking.interfaces.eth0.useDHCP = true;
# mosh ssh
programs.mosh.enable = true;
environment.systemPackages = with pkgs; [
cachix
direnv
git-crypt
nix-update
nodejs-14_x
pinentry-curses
ripgrep
rsync
tmux
vault
];
environment.noXlibs = lib.mkForce false;
2022-10-29 13:06:37 +02:00
system.stateVersion = "22.11";
2022-09-10 10:46:34 +02:00
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
};
}