From a24e8ace06b1f2ec2240dccb21140c8742c70675 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Fri, 12 Jan 2024 02:43:49 +0900 Subject: Use more suitable trivial text builders --- irc.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'irc.nix') diff --git a/irc.nix b/irc.nix index 9f69ec3..04239bc 100644 --- a/irc.nix +++ b/irc.nix @@ -21,11 +21,9 @@ let inherit (config.networking) domain; cert = config.security.acme.certs.${domain}; in { - environment.systemPackages = [ (pkgs.writeTextFile rec { - name = "sojupw"; - text = let htpasswd = "${pkgs.apacheHttpd}/bin/htpasswd"; - in '' - #!/bin/sh + environment.systemPackages = let + htpasswd = "${pkgs.apacheHttpd}/bin/htpasswd"; + sojupw = pkgs.writeShellScriptBin "sojupw" '' set -e printf 'soju password: ' read -rs password @@ -46,9 +44,7 @@ in { exit 1 fi ''; - executable = true; - destination = "/bin/${name}"; - }) ]; + in [ sojupw ]; networking.firewall.allowedTCPPorts = [ 6697 ]; -- cgit 1.4.1