chore: move validatePath function into lib

This commit is contained in:
Nydragon 2024-09-17 12:33:20 +02:00
parent 3124a7ab7e
commit c7633989cd
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 10 additions and 3 deletions

View file

@ -1,7 +1,11 @@
{ pkgs, config, ... }: {
pkgs,
config,
lib,
...
}:
let let
validatePath = inherit (lib.my) validatePath;
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
in in
rec { rec {
qt.platformTheme.name = "gnome"; qt.platformTheme.name = "gnome";

View file

@ -33,4 +33,7 @@
username = "ny"; username = "ny";
}; };
}; };
validatePath =
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
} }