1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

home-environment: generate checked activation script

By using `writeShellScript` when writing the activation script we
automatically get the right shebang and also get syntax validation.

Issue #2015
This commit is contained in:
Robert Helgesson 2021-05-18 00:18:57 +02:00
parent b0688a631b
commit 794d08a1d8
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -541,9 +541,7 @@ in
]
+ optionalString (!cfg.emptyActivationPath) "\${PATH:+:}$PATH";
activationScript = pkgs.writeScript "activation-script" ''
#!${pkgs.runtimeShell}
activationScript = pkgs.writeShellScript "activation-script" ''
set -eu
set -o pipefail