summaryrefslogtreecommitdiff
path: root/archetypes/profiles/router/default.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-12-30 18:29:25 -0600
committerTim Keller <tjk@tjkeller.xyz>2025-12-30 18:29:25 -0600
commit39180d50fd978a3a2106ce1d060e847e14eae38f (patch)
tree8fa30dcb6e2c73584a55e77f773004f36c403fa2 /archetypes/profiles/router/default.nix
parent69c65f81b920574fe34fd603a2b3051a615ca7ae (diff)
parent373376dc84112ae0bb8ce002af8d5d868f72b4ac (diff)
downloadnixos-39180d50fd978a3a2106ce1d060e847e14eae38f.tar.xz
nixos-39180d50fd978a3a2106ce1d060e847e14eae38f.zip
Merge branch 'master' of publicgit:nixos
Diffstat (limited to 'archetypes/profiles/router/default.nix')
-rw-r--r--archetypes/profiles/router/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/archetypes/profiles/router/default.nix b/archetypes/profiles/router/default.nix
new file mode 100644
index 0000000..0818a6b
--- /dev/null
+++ b/archetypes/profiles/router/default.nix
@@ -0,0 +1,15 @@
+{ lib, pkgs, ... }: let
+ mkRouter = lib.mkOverride 800;
+
+ # TODO pass mkRouter
+ #imports = [
+ # ./unbound.nix
+ #];
+
+ nixosConfig = {};
+
+ homeConfig = {};
+in {
+ imports = [ (lib._mkProfileArchetype "router" nixosConfig homeConfig) ];
+}
+