about summary refs log tree commit diff
path: root/nixos/modules/services/misc/nix-ssh-serve.nix
blob: 80e7961b1f82ed770ccadc7a118c3817d6770f5d (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ config, lib, pkgs, ... }:

let
  serveOnly = pkgs.writeScript "nix-store-serve" ''
    #!${pkgs.stdenv.shell}
    if [ "$SSH_ORIGINAL_COMMAND" != "nix-store --serve" ]; then
      echo 'Error: You are only allowed to run `nix-store --serve'\'''!' >&2
      exit 1
    fi
    exec /run/current-system/sw/bin/nix-store --serve
  '';

  inherit (lib) mkIf mkOption types;
in {
  options = {
    nix.sshServe = {
      enable = mkOption {
        description = "Whether to enable serving the nix store over ssh.";
        default = false;
        type = types.bool;
      };
    };
  };

  config = mkIf config.nix.sshServe.enable {
    users.extraUsers.nix-ssh = {
      description = "User for running nix-store --serve.";
      uid = config.ids.uids.nix-ssh;
      shell = pkgs.stdenv.shell;
    };

    services.openssh.enable = true;

    services.openssh.extraConfig = ''
      Match User nix-ssh
        AllowAgentForwarding no
        AllowTcpForwarding no
        PermitTTY no
        PermitTunnel no
        X11Forwarding no
        ForceCommand ${serveOnly}
      Match All
    '';
  };
}