summary refs log tree commit diff
path: root/nixos/modules/services/networking
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2016-01-25 23:14:53 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2016-01-25 23:14:53 +0300
commite395cb0214af755d460ce0e2a3642e92a5c7c19c (patch)
tree84340f0d686f127ac4590f79588c7d87dd3c3f75 /nixos/modules/services/networking
parentac33b4724a84ef01f3d25a42e2b63f1a9d3e5cd6 (diff)
parent80d38d12b42cf1033506b202e390199806e5ab7e (diff)
downloadnixlib-e395cb0214af755d460ce0e2a3642e92a5c7c19c.tar
nixlib-e395cb0214af755d460ce0e2a3642e92a5c7c19c.tar.gz
nixlib-e395cb0214af755d460ce0e2a3642e92a5c7c19c.tar.bz2
nixlib-e395cb0214af755d460ce0e2a3642e92a5c7c19c.tar.lz
nixlib-e395cb0214af755d460ce0e2a3642e92a5c7c19c.tar.xz
nixlib-e395cb0214af755d460ce0e2a3642e92a5c7c19c.tar.zst
nixlib-e395cb0214af755d460ce0e2a3642e92a5c7c19c.zip
Merge pull request #12601 from tomberek/gateone_update
Gateone: fix cacerts dependency
Diffstat (limited to 'nixos/modules/services/networking')
-rw-r--r--nixos/modules/services/networking/gateone.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/modules/services/networking/gateone.nix b/nixos/modules/services/networking/gateone.nix
index 93273837181e..78ff0b76198c 100644
--- a/nixos/modules/services/networking/gateone.nix
+++ b/nixos/modules/services/networking/gateone.nix
@@ -21,7 +21,7 @@ options = {
 };
 config = mkIf cfg.enable {
   environment.systemPackages = with pkgs.pythonPackages; [
-    gateone pkgs.openssh pkgs.procps pkgs.coreutils ];
+    gateone pkgs.openssh pkgs.procps pkgs.coreutils pkgs.cacert];
 
   users.extraUsers.gateone = {
     description = "GateOne privilege separation user";
@@ -49,8 +49,6 @@ config = mkIf cfg.enable {
       User = "gateone";
       Group = "gateone";
       WorkingDirectory = cfg.settingsDir;
-      PermissionsStartOnly = true;
-
     };
 
     wantedBy = [ "multi-user.target" ];