diff options
author | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2017-05-13 20:23:41 -0400 |
---|---|---|
committer | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2017-05-13 20:23:41 -0400 |
commit | dcab169d6faaafa378428b761633fc1d651dc721 (patch) | |
tree | ddf6538a7cea3d9250aef9df355f12306988910e /machines/container-shape.nix | |
parent | a2c246eed30741b8e89734edfd2905765372f88d (diff) |
Add new container, shape.
Diffstat (limited to 'machines/container-shape.nix')
-rw-r--r-- | machines/container-shape.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/machines/container-shape.nix b/machines/container-shape.nix new file mode 100644 index 0000000..9890244 --- /dev/null +++ b/machines/container-shape.nix @@ -0,0 +1,12 @@ +{ config, lib, pkgs, ... }: +{ + imports = [ + ../config/container.nix + ../config/common.nix + ../config/users.nix + ]; + + networking = { + hostName = lib.mkForce "shape"; + }; +} |