infrastructure/nixos/hosts/hades/bastion/configuration.nix
Vivian 2c16870d66
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
nixfmt
2023-05-04 13:08:10 +02:00

29 lines
453 B
Nix

{ 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;
system.stateVersion = "22.11";
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
};
}