test: lets see if the firewall can be set up and nmap installed

This commit is contained in:
silver 2023-01-13 17:23:15 +00:00
parent 554e21b02d
commit 75e687a556

15
machines/test01.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
imports = [
# base settings for alls ervers
./base.nix
# applications for this particular server
./applications/firewall.nix
];
environment.systemPackages = [
pkgs.nmap
];
}