From 875cab9cd428755fdc4e2cf8789291e09b3590fd Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Mon, 29 Jul 2024 22:58:30 +0100 Subject: [PATCH] Fix theme init errors Signed-off-by: Nikolaos Karaolidis --- hosts/common/user/configs/gui/theme/options.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/hosts/common/user/configs/gui/theme/options.nix b/hosts/common/user/configs/gui/theme/options.nix index ee71f77..217f182 100644 --- a/hosts/common/user/configs/gui/theme/options.nix +++ b/hosts/common/user/configs/gui/theme/options.nix @@ -12,7 +12,7 @@ let name = "theme-init"; runtimeInputs = with pkgs; [ matugen ]; bashOptions = [ - "nounset" + "errexit" "pipefail" ]; text = '' @@ -30,10 +30,6 @@ let theme = pkgs.writeShellApplication { name = "theme"; runtimeInputs = with pkgs; [ coreutils ]; - bashOptions = [ - "nounset" - "pipefail" - ]; runtimeEnv = { CONFIG = cfg.configDir; DEFAULT_WALLPAPER = cfg.wallpaper;