- Updated package references in flake.lock for various dependencies. - Changed VSCode package from vscodium to vscode and updated extensions. - Enabled SSH agent start in ssh.nix. - Refined overlays in default.nix for better package management.
11 lines
145 B
Nix
11 lines
145 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.ssh = lib.optionalAttrs pkgs.stdenv.isLinux {
|
|
startAgent = true;
|
|
enableAskPassword = true;
|
|
};
|
|
}
|