about summary refs log tree commit diff
path: root/common.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-03-17 23:25:33 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-03-17 23:25:33 +0100
commite5e5cfbf33008ca3260cd4f2dd78986694dfb027 (patch)
treea32d54e43425ef50cfbeb9ae3f7c6d6ce971acaa /common.nix
parent2e275c32e1754d28f4820b116067a1918f6b01d0 (diff)
Add common.nix and use it for all machines.
We now have "pkgs.labernix" available for every machine. Also, we're
deactivating the packet filter by default, so we can use it whenever we
_really_ need it.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'common.nix')
-rw-r--r--common.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/common.nix b/common.nix
new file mode 100644
index 00000000..b012032a
--- /dev/null
+++ b/common.nix
@@ -0,0 +1,4 @@
+{
+  imports = import ./modules/module-list.nix;
+  networking.firewall.enable = false;
+}