summaryrefslogtreecommitdiff
path: root/machines/container-shape.nix
blob: 98902448ba6094da44ac3fec4faec7d253b8f5aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, pkgs, ... }:
{
  imports = [
    ../config/container.nix
    ../config/common.nix
    ../config/users.nix
  ];

  networking = {
    hostName = lib.mkForce "shape";
  };
}