From 2aace1d98eeb3933e1269b00b3043d740a67a08c Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 29 Jun 2023 21:54:49 +0900 Subject: [PATCH] Testing home-manager git includes --- laptop/home-manager.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/laptop/home-manager.nix b/laptop/home-manager.nix index 30d83737..96da67dc 100644 --- a/laptop/home-manager.nix +++ b/laptop/home-manager.nix @@ -11,5 +11,13 @@ in /* The home.stateVersion option does not have a default and must be set */ home.stateVersion = "23.05"; /* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */ + programs.git = { + enable = true; + userName = "albert"; + userEmail = "albert@sysctl.io"; + includes.credentials.contents { + helper = "cache --timeout=25920000"; + }; + }; }; } \ No newline at end of file