chore: move validatePath function into lib
This commit is contained in:
parent
3124a7ab7e
commit
c7633989cd
2 changed files with 10 additions and 3 deletions
|
@ -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";
|
||||
|
|
|
@ -33,4 +33,7 @@
|
|||
username = "ny";
|
||||
};
|
||||
};
|
||||
|
||||
validatePath =
|
||||
s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue