mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 20:43:00 +01:00
10 lines
252 B
Nix
10 lines
252 B
Nix
{ lib }:
|
|
{
|
|
localconf =
|
|
let
|
|
path = "${builtins.getEnv "HOME"}/.config/mzte_localconf/opts.nix";
|
|
in
|
|
lib.optional (builtins.pathExists path) (import path);
|
|
|
|
confgenFile = path: /. + (builtins.getEnv "HOME") + "/confgenfs/${path}";
|
|
}
|