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

  networking = {
    hostName = lib.mkForce "new-container";
  };
}