Major fixes

This commit is contained in:
2025-12-27 00:21:10 +02:00
parent a83db33c39
commit 1ab061fb90
9 changed files with 61 additions and 37 deletions
+1
View File
@@ -15,5 +15,6 @@
./headphones-whmx4000.nix
./deluge.nix
./lauretta-emacs.nix
./gimp.nix
];
}
+21
View File
@@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.gimp.enable;
in {
options.azos.gimp.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
gimp3
];
};
}
+9 -4
View File
@@ -18,17 +18,22 @@ in {
programs.git = {
enable = true;
userName = "Aner Zakobar";
userEmail = "aner@zakobar.com";
signing = {
key = "6D17E295C70E2674";
signByDefault = true;
};
extraConfig = {
credential.helper = "!pass-git-helper $@";
settings = {
extraConfig = {
credential.helper = "!pass-git-helper $@";
};
user = {
name = "Aner Zakobar";
email = "aner@zakobar.com";
};
};
};
home.file.".config/pass-git-helper/git-pass-mapping.ini".source =
./pass-git-mapping.ini;