diff options
Diffstat (limited to '')
| -rw-r--r-- | hosts/apocalypse/default.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hosts/apocalypse/default.nix b/hosts/apocalypse/default.nix index 8993dc2..c20c609 100644 --- a/hosts/apocalypse/default.nix +++ b/hosts/apocalypse/default.nix @@ -1,4 +1,4 @@ - {lib, ...}: + {lib, pkgs, ...}: { imports = [ ./hardware-configuration.nix @@ -94,6 +94,13 @@ PrintMotd = true; }; }; + + # Winbox setup. + programs.winbox = { + enable = true; + openFirewall = true; + package = pkgs.winbox; + }; } |
