renamed some files and directories that had identical filenames. Altered some nixvim plugin options. Set up gpg signing for git commits.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ lib, config, username, ... }: {
|
||||
{ lib, config, username, pkgs, ... }: {
|
||||
options = {
|
||||
movOpts.programConfigs.gitConfig.enable =
|
||||
lib.mkEnableOption "enables my git configuration";
|
||||
@@ -6,7 +6,12 @@
|
||||
config = lib.mkIf config.movOpts.programConfigs.gitConfig.enable {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userEmail = "${username}@gmail.com";
|
||||
signing = {
|
||||
gpgPath = "${pkgs.gnupg}/bin/gpg";
|
||||
key = "76118C11E525D3D0CBCA0F6EB2A3D477E86843DB";
|
||||
signByDefault = true;
|
||||
};
|
||||
userEmail = "kylerclay@proton.me";
|
||||
userName = "${username}";
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user