Compare commits

...

3 Commits

Author SHA1 Message Date
3166ad5b32 Set GIT_ASKPASS so I can use https git remote 2025-01-14 22:25:11 -06:00
4c16c8c2fa start ssh, disable gnome keyring 2025-01-12 00:07:35 -06:00
29b9198ce2 try updating cred helper to store 2025-01-12 00:03:22 -06:00
2 changed files with 11 additions and 0 deletions

View File

@@ -54,6 +54,7 @@
}; };
programs.bash.enable = true; programs.bash.enable = true;
programs.bash.bashrcExtra = '' programs.bash.bashrcExtra = ''
export GIT_ASKPASS=""
if [ -f .bashrc.orig ]; then if [ -f .bashrc.orig ]; then
. ~/.bashrc.orig . ~/.bashrc.orig
fi fi

View File

@@ -4,6 +4,7 @@
stylix, stylix,
username, username,
ghostty, ghostty,
lib,
... ...
}: }:
{ {
@@ -35,6 +36,9 @@
}; };
}; };
programs.ssh.startAgent = true; # Use OpenSSH agent instead
services.gnome.gnome-keyring.enable = lib.mkForce false; # Disable GNOME keyring
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
@@ -72,6 +76,12 @@
enable = true; enable = true;
flake = "/home/${username}/nix-config"; flake = "/home/${username}/nix-config";
}; };
git = {
enable = true;
config = {
credential.helper = "store";
};
};
}; };
networking.nameservers = [ networking.nameservers = [