openssh regression?

This commit is contained in:
Emmet 2025-10-25 14:45:12 -05:00
parent f319787c69
commit cb5659541e
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, osConfig, ... }:
{ config, lib, pkgs, pkgs-stable, osConfig, ... }:
let
cfg = config.userSettings.git;
@ -10,7 +10,7 @@ in {
};
config = lib.mkIf cfg.enable {
home.packages = [ pkgs.git pkgs.openssh ];
home.packages = [ pkgs.git pkgs-stable.openssh ];
programs.git.enable = true;
programs.git.userName = config.userSettings.name;
programs.git.userEmail = config.userSettings.email;