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

  users.extraUsers.root.initialHashedPassword = mkOverride 150 "love";

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