about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/nixops/legacy/base-configuration.nix
blob: dba960f595c27b0f5fd2943b75e94d9039e2eaea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, modulesPath, pkgs, ... }:
let
  ssh-keys =
    if builtins.pathExists ../../ssh-keys.nix
    then # Outside sandbox
      ../../ssh-keys.nix
    else # In sandbox
      ./ssh-keys.nix;

  inherit (import ssh-keys pkgs)
    snakeOilPrivateKey snakeOilPublicKey;
in
{
  imports = [
    (modulesPath + "/virtualisation/qemu-vm.nix")
    (modulesPath + "/testing/test-instrumentation.nix")
  ];
  virtualisation.writableStore = true;
  nix.binaryCaches = lib.mkForce [ ];
  virtualisation.graphics = false;
  documentation.enable = false;
  services.qemuGuest.enable = true;
  boot.loader.grub.enable = false;

  services.openssh.enable = true;
  users.users.root.openssh.authorizedKeys.keys = [
    snakeOilPublicKey
  ];
  security.pam.services.sshd.limits =
    [{ domain = "*"; item = "memlock"; type = "-"; value = 1024; }];
}