infrastructure/nixos/hosts/hades/bastion/configuration.nix
Victor 14405c1109
Some checks failed
Lint / lint (push) Failing after 1m12s
Plex Update / update (push) Successful in 1m29s
fix bastion
2023-11-11 00:03:17 +01:00

27 lines
437 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
pinentry-curses
ripgrep
rsync
tmux
vault
];
environment.noXlibs = lib.mkForce false;
system.stateVersion = "22.11";
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
};
}