trim any newlines in the password, or else it won't set right
This commit is contained in:
parent
e1336c6ad4
commit
b7c9bf8be6
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ in
|
|||
let
|
||||
password = config.age.secrets.piholeAdminPass.path;
|
||||
in ''
|
||||
podman exec -it pihole pihole -a -p ${password}
|
||||
podman exec -it pihole pihole -a -p "$(tr -d '\n' < ${password})"
|
||||
'';
|
||||
|
||||
networking.firewall = {
|
||||
|
|
Loading…
Reference in a new issue