summaryrefslogtreecommitdiff
path: root/lib/my.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/my.nix')
-rw-r--r--lib/my.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/my.nix b/lib/my.nix
new file mode 100644
index 0000000..500a1d7
--- /dev/null
+++ b/lib/my.nix
@@ -0,0 +1,15 @@
+lib: with lib; let
+ modules = [
+ {
+ config = {
+ _module.freeformType = with types; attrs;
+
+ username = "mivi";
+ githubUsername = "mvinkio";
+ realName = "Mike Vink";
+ domain = "vinkland.xyz";
+ email = "mike1994vink@gmail.com";
+ };
+ }
+ ];
+in (evalModules { inherit modules; }).config