mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
nixos/libreswan: use environment.etc."ipsec.secrets".text
This is to ensure compatibility with the networkmanager module, which
uses the `text` option.
(cherry picked from commit b294762bb9
)
This commit is contained in:
parent
ed0df42190
commit
65933c9eb9
@ -125,7 +125,9 @@ in
|
|||||||
|
|
||||||
# Install configuration files
|
# Install configuration files
|
||||||
environment.etc = {
|
environment.etc = {
|
||||||
"ipsec.secrets".source = "${pkgs.libreswan}/etc/ipsec.secrets";
|
"ipsec.secrets".text = ''
|
||||||
|
include ${pkgs.libreswan}/etc/ipsec.secrets
|
||||||
|
'';
|
||||||
"ipsec.conf".source = "${pkgs.libreswan}/etc/ipsec.conf";
|
"ipsec.conf".source = "${pkgs.libreswan}/etc/ipsec.conf";
|
||||||
"ipsec.d/01-nixos.conf".source = configFile;
|
"ipsec.d/01-nixos.conf".source = configFile;
|
||||||
} // policyFiles;
|
} // policyFiles;
|
||||||
|
Loading…
Reference in New Issue
Block a user