diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-10-07 01:33:26 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-10-07 01:33:26 +0200 |
| commit | a2cbf737e78051c2cb10eeaf4a5dccc19d6348ba (patch) | |
| tree | f53ab92a0c94926e92117891eb87f19cafaa536c /lib/my.nix | |
| parent | cfaef26e8718916adcc68fbfb63b15f2389b2cd2 (diff) | |
first working
Diffstat (limited to 'lib/my.nix')
| -rw-r--r-- | lib/my.nix | 15 |
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 |
