test: lets see if the firewall can be set up and nmap installed
This commit is contained in:
parent
554e21b02d
commit
75e687a556
1 changed files with 15 additions and 0 deletions
15
machines/test01.nix
Normal file
15
machines/test01.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue