mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
9 lines
175 B
Nix
9 lines
175 B
Nix
|
{ lib }:
|
||
|
{
|
||
|
localconf =
|
||
|
let
|
||
|
path = "${builtins.getEnv "HOME"}/.config/mzte_localconf/opts.nix";
|
||
|
in
|
||
|
lib.optional (builtins.pathExists path) (import path);
|
||
|
}
|