diff options
Diffstat (limited to 'modules/home-manager')
-rw-r--r-- | modules/home-manager/git-credential-lastpass/default.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/home-manager/git-credential-lastpass/default.nix b/modules/home-manager/git-credential-lastpass/default.nix index bbc8d34..1677178 100644 --- a/modules/home-manager/git-credential-lastpass/default.nix +++ b/modules/home-manager/git-credential-lastpass/default.nix @@ -1,4 +1,10 @@ -{pkgs, config, lib, ...}: let inherit (lib.options) mkEnableOption mkPackageOption; +{ + pkgs, + config, + lib, + ... +}: let + inherit (lib.options) mkEnableOption mkPackageOption; inherit (lib.modules) mkIf; cfg = config.programs.git-credential-lastpass; in { @@ -9,6 +15,6 @@ in { }; config = mkIf cfg.enable { - programs.git.extraConfig.credential.helper = [ "${cfg.package}/bin/git-credential-lastpass" ]; + programs.git.extraConfig.credential.helper = ["${cfg.package}/bin/git-credential-lastpass"]; }; } |