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