diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-08-22 12:42:46 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-08-22 12:42:46 -0500 |
| commit | bc81e75bead05fdf2cb6aaf3fec6e933ce8feb1a (patch) | |
| tree | a572e2bfddca3c1b81fe15fdf3ee6cc045f67e1e /hosts/ganymede/nixos.nix | |
| parent | 967ec14cba166079d71d67f4137ee62fca315d62 (diff) | |
everything is working now
Diffstat (limited to 'hosts/ganymede/nixos.nix')
| -rw-r--r-- | hosts/ganymede/nixos.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/hosts/ganymede/nixos.nix b/hosts/ganymede/nixos.nix index 314b72a..bbed85c 100644 --- a/hosts/ganymede/nixos.nix +++ b/hosts/ganymede/nixos.nix @@ -1,4 +1,8 @@ -{inputs, ...}: { +{ + inputs, + hosts, + ... +}: { imports = [ inputs.disko.nixosModules.disko inputs.nixos-facter-modules.nixosModules.facter @@ -9,7 +13,13 @@ ./wireguard.nix ]; + security.pki.certificates = [ + hosts.ganymede.caddy-root-ca + ]; + facter.reportPath = ./facter.json; + users.users."collin".extraGroups = ["fileserver"]; + services.fail2ban.enable = true; } |
