summaryrefslogtreecommitdiff
path: root/lib/my.nix
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-10-07 01:33:26 +0200
committerMike Vink <mike1994vink@gmail.com>2023-10-07 01:33:26 +0200
commita2cbf737e78051c2cb10eeaf4a5dccc19d6348ba (patch)
treef53ab92a0c94926e92117891eb87f19cafaa536c /lib/my.nix
parentcfaef26e8718916adcc68fbfb63b15f2389b2cd2 (diff)
first working
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