first multi-site deploy working 🎉
This commit is contained in:
parent
1ee95b1f9c
commit
6ae076296e
3 changed files with 44 additions and 1 deletions
29
nixos/hosts/hades/bastion/configuration.nix
Normal file
29
nixos/hosts/hades/bastion/configuration.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ 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;
|
||||
|
||||
system.stateVersion = "21.05";
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "curses";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue