organized, fixed wireguard config

This commit is contained in:
Parker TenBroeck 2026-05-23 11:13:59 -04:00
parent 1be91dfd0c
commit 079b1eb5d6
12 changed files with 139 additions and 70 deletions

13
modules/agenix.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
let
agenixSrc = builtins.fetchTarball "https://github.com/ryantm/agenix/archive/main.tar.gz";
in {
imports = [
"${agenixSrc}/modules/age.nix"
];
environment.systemPackages = [
(pkgs.callPackage "${agenixSrc}/pkgs/agenix.nix" { })
];
}