summaryrefslogtreecommitdiff
path: root/config/container.nix
blob: f4508f5e2ec08554d0bc5ff5b1dd69aed588a656 (plain)
1
2
3
4
5
6
7
8
9
{ config, lib, pkgs, ... }:
{
  boot.isContainer = true;
  networking.firewall.allowedTCPPorts = [ 22 ];
  services.openssh.enable = lib.mkDefault true;
  system.activationScripts.installInitScript = ''
    ln -fs $systemConfig/init /init
  '';
}