From 2c88a52d5a8215997da4e58ca30cebf9b0856e9a Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 23 Dec 2025 18:59:36 +0000 Subject: [PATCH] this one works! --- apps/git/home.nix | 6 +++--- hosts/hakase/configuration.nix | 8 +++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/apps/git/home.nix b/apps/git/home.nix index b15b115..70b4ac7 100644 --- a/apps/git/home.nix +++ b/apps/git/home.nix @@ -2,9 +2,9 @@ programs.git = { enable = true; extraConfig = { - user.name = "${myConfig.nixos.Git.user}"; - user.email = "${myConfig.nixos.Git.email}"; - init.defaultBranch = "${myConfig.nixos.Git.defaultBranch}"; + user.name = "${myConfig.git.username}"; + user.email = "${myConfig.git.email}"; + init.defaultBranch = "${myConfig.git.defaultBranch}"; }; }; } diff --git a/hosts/hakase/configuration.nix b/hosts/hakase/configuration.nix index a4094b5..0f9df47 100644 --- a/hosts/hakase/configuration.nix +++ b/hosts/hakase/configuration.nix @@ -1,6 +1,12 @@ -{pkgs, ...}: { +{ + pkgs, + myConfig, + ... +}: { imports = [ ./hardware-configuration.nix ../../modules/system/default.nix ]; + + programs.ssh.extraConfig = myConfig.ssh.extraConfig; }