summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorThomas Bereknyei <tomberek@gmail.com>2015-12-17 13:17:49 -0500
committerThomas Bereknyei <tomberek@gmail.com>2016-01-24 16:52:06 -0500
commit80d38d12b42cf1033506b202e390199806e5ab7e (patch)
treeb667906dc860147a0f35766dcf5f893a17d8d153 /nixos/modules
parent148396c02219f1c6fcdb5991a7de7716cefaa1d8 (diff)
downloadnixpkgs-80d38d12b42cf1033506b202e390199806e5ab7e.tar
nixpkgs-80d38d12b42cf1033506b202e390199806e5ab7e.tar.gz
nixpkgs-80d38d12b42cf1033506b202e390199806e5ab7e.tar.bz2
nixpkgs-80d38d12b42cf1033506b202e390199806e5ab7e.tar.lz
nixpkgs-80d38d12b42cf1033506b202e390199806e5ab7e.tar.xz
nixpkgs-80d38d12b42cf1033506b202e390199806e5ab7e.tar.zst
nixpkgs-80d38d12b42cf1033506b202e390199806e5ab7e.zip
Gateone: fix cacerts dependency
Diffstat (limited to 'nixos/modules')
-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 93273837181..78ff0b76198 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" ];