patch minor incompatibilities with 3p/nixpkgs update
This commit is contained in:
parent
551c4f27ad
commit
dba2db07b1
2 changed files with 3 additions and 2 deletions
|
@ -455,7 +455,7 @@ in {
|
|||
headers = "username:X-Pomerium-Claim-User";
|
||||
auto_sign_up = "true";
|
||||
};
|
||||
security.cookie_secure = "true";
|
||||
security.cookie_secure = true;
|
||||
};
|
||||
};
|
||||
systemd.services.grafana.preStart = let
|
||||
|
|
|
@ -106,7 +106,8 @@ in
|
|||
target = mkDefault name;
|
||||
source = mkIf (config.text != null) (
|
||||
mkDefault (pkgs.writeTextFile {
|
||||
inherit (config) executable text;
|
||||
inherit (config) text;
|
||||
executable = if isNull config.executable then false else config.executable;
|
||||
name = hm.strings.storeFileName name;
|
||||
})
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue