summaryrefslogtreecommitdiff
path: root/modules/hosts/flex-wg-router/configuration.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-07-17 15:54:33 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-07-17 15:54:33 -0500
commit991ae9037461f2993f0f240be2fe4fe24bbeacb6 (patch)
tree275c2fc5ca40dbc4900f9948f4e0335586548516 /modules/hosts/flex-wg-router/configuration.nix
parenta688539807108266f4181e229407861cb86e3b9f (diff)
downloadnixos-991ae9037461f2993f0f240be2fe4fe24bbeacb6.tar.xz
nixos-991ae9037461f2993f0f240be2fe4fe24bbeacb6.zip
add flex-wg-router host
Diffstat (limited to 'modules/hosts/flex-wg-router/configuration.nix')
-rw-r--r--modules/hosts/flex-wg-router/configuration.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/hosts/flex-wg-router/configuration.nix b/modules/hosts/flex-wg-router/configuration.nix
new file mode 100644
index 0000000..3edb354
--- /dev/null
+++ b/modules/hosts/flex-wg-router/configuration.nix
@@ -0,0 +1,14 @@
+{ config, lib, pkgs, ... }: {
+ imports = [
+ ./hardware-configuration.nix
+ ../../archetypes/headless
+ ];
+ bootloader.mode = "efi";
+
+ # Enable docker
+ software.development = {
+ docker.enable = true;
+ };
+
+ system.stateVersion = "25.05";
+}