Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmorley committed Aug 23, 2024
1 parent b356a7c commit d4d6305
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ in {
else "morley.jonathan@gmail.com";
signing.key = sshKeys."github.com";
signing.signByDefault = true;
ignores = lib.splitString "\n" (builtins.readFile "${gitignores}/Global/${if pkgs.stdenv.isDarwin then "macOS" else "Linux"}.gitignore");
ignores = lib.splitString "\n" (builtins.readFile "${gitignores}/Global/${
if pkgs.stdenv.isDarwin
then "macOS"
else "Linux"
}.gitignore");
extraConfig = {
core.sshCommand = "ssh -i ${builtins.toFile "github.com.pub" sshKeys."github.com"}";
credential = {
Expand Down Expand Up @@ -188,7 +192,7 @@ in {
};

home.packages = with pkgs;
# Tools
# Tools
[
coreutils
dasel
Expand Down

0 comments on commit d4d6305

Please sign in to comment.