forked from aylac.top/nixcfg
this repo has no description

fix me being stupid with the git snippet

aylac.top 942092d8 e197f6cf

verified
Changed files
+7 -4
modules
home
snippets
+7 -4
modules/home/snippets/git/default.nix
···
-
{...}: {
options.mySnippets.git = {
-
user = {
-
name = "ayla";
-
email = "ayla-git.barcode041@silomails.com";
};
};
}
···
+
{lib, ...}: {
options.mySnippets.git = {
+
user = lib.mkOption {
+
type = lib.types.attrs;
+
default = {
+
name = "ayla";
+
email = "ayla-git.barcode041@silomails.com";
+
};
};
};
}