diff --git a/modules/hyprland.nix b/modules/hyprland.nix index 8affcd3..0a3243c 100644 --- a/modules/hyprland.nix +++ b/modules/hyprland.nix @@ -4,6 +4,8 @@ package = pkgs.unstable.hyprland; }; + services.gnome.gnome-keyring.enable = true; + environment.systemPackages = with pkgs; [ # Theme adw-gtk3 diff --git a/user/modules/git_nixos.nix b/user/modules/git_nixos.nix index 20d2c7c..6c76c5f 100644 --- a/user/modules/git_nixos.nix +++ b/user/modules/git_nixos.nix @@ -2,15 +2,13 @@ programs.git = { package = pkgs.gitAndTools.gitFull; extraConfig = { - credential.helper = [ - # Cache credentials for 2 weeks - "cache --timeout 1209600" - "oauth" - ]; + credential.helper = "manager"; + credential.credentialStore = "secretservice"; + credential."git.thomasfmly.org".provider = "generic"; }; }; home.packages = with pkgs; [ - git-credential-oauth + git-credential-manager ]; }