update config

This commit is contained in:
dim
2025-08-07 09:09:38 +07:00
parent b84b427fca
commit 6c857ee393
9 changed files with 51 additions and 49 deletions

View File

@@ -1,12 +1,14 @@
{ config, ... }:
{ config, pkgs, ... }:
let
username = config.var.git.username;
email = config.var.git.email;
in {
home.packages = with pkgs; [ tea ];
programs.git = {
enable = true;
userName = username;
userEmail = email;
signing.key = "D8EDD65BCB54AC8719BE4EBD8D5D880EB08F1544";
ignores = [
".cache/"
".DS_Store"
@@ -23,6 +25,7 @@ in {
init.defaultBranch = "main";
push.autoSetupRemote = true;
color.ui = "1";
commit.gpgSign = true;
};
aliases = {
essa = "push --force";