infrastructure/nixos/hosts/hades/bastion/configuration.nix
Vivian d462b4c9b7
Some checks failed
Lint / lint (push) Failing after 1m27s
Plex Update / update (push) Successful in 1m36s
fix gnome
2023-11-22 11:38:37 +01:00

30 lines
458 B
Nix

{ pkgs, lib, ... }: {
networking.interfaces.eth0.useDHCP = true;
# mosh ssh
programs.mosh.enable = true;
environment.systemPackages = with pkgs; [
cachix
clang
direnv
git-crypt
nix-update
pinentry-curses
ripgrep
rsync
rustup
tmux
vault
];
environment.noXlibs = lib.mkForce false;
system.stateVersion = "22.11";
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
};
}