1
0

Compare commits

...

4 Commits

Author SHA1 Message Date
Flake Update Bot
0645c2f371 Update from updated-inputs-2025-05-20-01-03 2025-05-20 03:03:08 +02:00
Flake Update Bot
40a11a09d9 Update nixpkgs 2025-05-20-01-03 2025-05-20 03:03:06 +02:00
b93dc9f16b configuration/common: Make Python requests always use system CA 2025-05-19 18:43:38 +02:00
44d1a444ba pkgs/git-show-link: Handle branch names with slashes properly 2025-05-19 10:49:32 +02:00
3 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{ config, ... }:
{
environment.sessionVariables = {
REQUESTS_CA_BUNDLE = config.security.pki.caBundle;
};
}

View File

@@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./backup.nix ./backup.nix
./certificates.nix
./initrd.nix ./initrd.nix
./locale.nix ./locale.nix
./networking.nix ./networking.nix

View File

@@ -41,7 +41,7 @@ def get_remote_branch():
local_branch, remote_branch = branches local_branch, remote_branch = branches
remote, branch = remote_branch.split("/") remote, branch = remote_branch.split("/", maxsplit=1)
return { return {
"remote": remote, "remote": remote,