Compare commits

...

3 Commits

Author SHA1 Message Date
Sam W 007d0203bc git: add lfs 2023-11-27 19:09:30 +00:00
Sam W eb0ee2cdce flake: update nixpkgs 2023-10-03 17:49:51 +01:00
Sam W 39c4a76673 gpg: disable agent on darwin 2023-10-03 17:48:06 +01:00
3 changed files with 5 additions and 4 deletions

View File

@ -62,11 +62,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1686912178,
"narHash": "sha256-4W6M4ZIJwwvr6nqtmqYPLHSb+gnryVuDoDEqu7Ecy/M=",
"lastModified": 1696323343,
"narHash": "sha256-u7WLUrh5eb+6SBYwtkaGL2ryHpLcHzmLml+a+VqKJWE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2decc88392ad88868aba2be221491facd3da6d1f",
"rev": "3b79cc4bcd9c09b5aa68ea1957c25e437dc6bc58",
"type": "github"
},
"original": {

View File

@ -2,6 +2,7 @@
home.packages = with pkgs; [ git-open tea ];
programs.git = {
enable = true;
lfs.enable = true;
userName = "Sam Willcocks";
userEmail = "sam@wlcx.cc";

View File

@ -24,7 +24,7 @@
# Shouldn't have an effect on macos, on linux we need to specify a pinentry
services.gpg-agent = {
enable = true;
enable = !pkgs.stdenv.isDarwin;
enableSshSupport = true;
pinentryFlavor = "qt"; # for plasma
};