From c7633989cd550be6ad79857e5c5477c42a69f750 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Tue, 17 Sep 2024 12:33:20 +0200 Subject: [PATCH] chore: move validatePath function into lib --- home/themes/catppuccin.nix | 10 +++++++--- parts/lib/functions.nix | 3 +++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/home/themes/catppuccin.nix b/home/themes/catppuccin.nix index 22cb83c..2f2b7b8 100644 --- a/home/themes/catppuccin.nix +++ b/home/themes/catppuccin.nix @@ -1,7 +1,11 @@ -{ pkgs, config, ... }: +{ + pkgs, + config, + lib, + ... +}: let - validatePath = - s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist"; + inherit (lib.my) validatePath; in rec { qt.platformTheme.name = "gnome"; diff --git a/parts/lib/functions.nix b/parts/lib/functions.nix index c14fb82..b3e48b6 100644 --- a/parts/lib/functions.nix +++ b/parts/lib/functions.nix @@ -33,4 +33,7 @@ username = "ny"; }; }; + + validatePath = + s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist"; }