infrastructure/nixos/hosts/hades/bastion/configuration.nix
Vivian 9d976b6c2f
Some checks are pending
Plex Update / update (push) Waiting to run
updated olympus
2024-11-01 16:51:49 +01:00

13 lines
219 B
Nix

{ pkgs, lib, ... }: {
networking.interfaces.eth0.useDHCP = true;
# mosh ssh
programs.mosh.enable = true;
environment.systemPackages = with pkgs; [
rustup
vault
];
system.stateVersion = "22.11";
}