trying to fix git

This commit is contained in:
John Lancaster
2024-12-08 15:25:55 -06:00
parent 9d4c47682b
commit 9334d2cc7f
6 changed files with 39 additions and 49 deletions

View File

@@ -24,6 +24,15 @@
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
stateVersion = "24.05";
# userSettings = rec {
# username = "shahvirb"; # username on the system
# name = "Shahvir"; # name/identifier on the system
# email = "shahvirb@gmail.com";
# gitUserName = "shahvirb";
# gitUserEmail = "shahvirb@gmail.com";
# };
timeZone = "America/Chicago";
hostname = "panoptes-nix";
user = "panoptes";
@@ -53,14 +62,10 @@
homeConfigurations = {
useGlobalPkgs = true;
"root@${hostname}" = home-manager.lib.homeManagerConfiguration {
user = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {inherit inputs outputs pkgs;};
modules = [ ./home-manager/git.nix ];
};
"${user}@${hostname}" = home-manager.lib.homeManagerConfiguration {
extraSpecialArgs = {inherit inputs outputs pkgs;};
modules = [ ./home-manager/home.nix ];
modules = [ ./homeManagerModules/home.nix ];
};
};
};