diff options
Diffstat (limited to 'modules/hosts/flex-wg-router/configuration.nix')
-rw-r--r-- | modules/hosts/flex-wg-router/configuration.nix | 17 |
1 files changed, 17 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..f21046d --- /dev/null +++ b/modules/hosts/flex-wg-router/configuration.nix @@ -0,0 +1,17 @@ +{ config, lib, pkgs, ... }: { + imports = [ + ./hardware-configuration.nix + ../../archetypes/headless + ]; + bootloader.mode = "efi"; + + # Enable docker + software.development = { + docker.enable = true; + }; + + # Enable set root password + users.setPassword.enable = true; + + system.stateVersion = "25.05"; +} |