Fix theme init errors

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-07-29 22:58:30 +01:00
parent a76df8f5d0
commit 875cab9cd4

View File

@@ -12,7 +12,7 @@ let
name = "theme-init"; name = "theme-init";
runtimeInputs = with pkgs; [ matugen ]; runtimeInputs = with pkgs; [ matugen ];
bashOptions = [ bashOptions = [
"nounset" "errexit"
"pipefail" "pipefail"
]; ];
text = '' text = ''
@@ -30,10 +30,6 @@ let
theme = pkgs.writeShellApplication { theme = pkgs.writeShellApplication {
name = "theme"; name = "theme";
runtimeInputs = with pkgs; [ coreutils ]; runtimeInputs = with pkgs; [ coreutils ];
bashOptions = [
"nounset"
"pipefail"
];
runtimeEnv = { runtimeEnv = {
CONFIG = cfg.configDir; CONFIG = cfg.configDir;
DEFAULT_WALLPAPER = cfg.wallpaper; DEFAULT_WALLPAPER = cfg.wallpaper;