Compare commits
2 commits
1833e6708d
...
5da7dbabfb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5da7dbabfb | ||
|
|
074d164e95 |
2 changed files with 30 additions and 0 deletions
|
|
@ -310,6 +310,7 @@
|
||||||
|
|
||||||
ignoreregex =
|
ignoreregex =
|
||||||
'';
|
'';
|
||||||
|
|
||||||
environment.etc."fail2ban/filter.d/forgejo.local".text = ''
|
environment.etc."fail2ban/filter.d/forgejo.local".text = ''
|
||||||
[Definition]
|
[Definition]
|
||||||
# Matches: ... Failed login attempt for user ... from ip address <HOST>
|
# Matches: ... Failed login attempt for user ... from ip address <HOST>
|
||||||
|
|
@ -319,6 +320,19 @@
|
||||||
ignoreregex =
|
ignoreregex =
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
environment.etc."magic-update-script.sh".text = ''
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
echo "Pulling latest container images..."
|
||||||
|
|
||||||
|
${lib.concatMapStringsSep "\n" (name:
|
||||||
|
"docker pull ${config.virtualisation.oci-containers.containers.${name}.image}"
|
||||||
|
) (builtins.attrNames config.virtualisation.oci-containers.containers)}
|
||||||
|
|
||||||
|
echo "All images updated successfully!"
|
||||||
|
'';
|
||||||
|
|
||||||
# Virtualisation
|
# Virtualisation
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
containers.enable = true;
|
containers.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,10 @@
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
22
|
||||||
|
];
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
experimental-features = nix-command flakes impure-derivations ca-derivations
|
experimental-features = nix-command flakes impure-derivations ca-derivations
|
||||||
|
|
@ -99,6 +103,10 @@
|
||||||
"wheel"
|
"wheel"
|
||||||
];
|
];
|
||||||
packages = with pkgs; [ ];
|
packages = with pkgs; [ ];
|
||||||
|
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINGHadFhDCUU/ta3p1FQgpm7NExHkyHNrJbNJP6np5w9 kempinger@ins.jku.at"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
|
|
@ -135,6 +143,14 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
PasswordAuthentication = false;
|
||||||
|
KbdInteractiveAuthentication = false;
|
||||||
|
PermitRootLogin = "prohibit-password"; # Allow root with SSH keys only
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.firefox.enable = true;
|
programs.firefox.enable = true;
|
||||||
programs.fish.enable = true;
|
programs.fish.enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue