summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rw-r--r--machines/generic-container.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/machines/generic-container.nix b/machines/generic-container.nix
new file mode 100644
index 0000000..6c6c332
--- /dev/null
+++ b/machines/generic-container.nix
@@ -0,0 +1,11 @@
+{ config, lib, pkgs, ... }:
+{
+ imports = [
+ ../config/container.nix
+ ../config/users.nix
+ ];
+
+ networking = {
+ hostName = lib.mkForce "new-container";
+ };
+}