Major fixes
This commit is contained in:
@@ -15,5 +15,6 @@
|
||||
./headphones-whmx4000.nix
|
||||
./deluge.nix
|
||||
./lauretta-emacs.nix
|
||||
./gimp.nix
|
||||
];
|
||||
}
|
||||
|
||||
Executable
+21
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user