diff options
Diffstat (limited to 'hosts/flex-wg-router/configuration.nix')
-rw-r--r-- | hosts/flex-wg-router/configuration.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/flex-wg-router/configuration.nix b/hosts/flex-wg-router/configuration.nix new file mode 100644 index 0000000..b09c3f0 --- /dev/null +++ b/hosts/flex-wg-router/configuration.nix @@ -0,0 +1,17 @@ +{ config, lib, pkgs, ... }: { + # Setup bootloader + boot._loader.enable = true; + + _archetypes = { + # Use headless profile + profiles.headless.enable = true; + # Install software + collections = { + development = { + docker.enable = true; + }; + }; + } + + system.stateVersion = "25.05"; +} |