nixos/machines/test01.nix

16 lines
222 B
Nix
Raw Normal View History

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