beherbergung/deployment/modules/default.nix
Johannes Lötzsch 7e763ee267 deployment: sops + basicAuth
created with htpasswd from pkgs.apache2-utils

+ ensured the database is not seeded with test logins
2022-03-10 22:27:18 +01:00

16 lines
260 B
Nix

{ config, pkgs, ... }:
{
time.timeZone = "Europe/Berlin";
environment.systemPackages = with pkgs; [
vim tmux
wget curl
htop atop iotop iftop
file bc jq
git gnupg
bind.dnsutils
];
environment.variables = { EDITOR = "vim"; };
}