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
|
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";
|
||||||
|
|
|
@ -33,4 +33,7 @@
|
||||||
username = "ny";
|
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