1
0

Update from updated-inputs-2025-05-20-01-03

This commit is contained in:
Flake Update Bot
2025-05-20 03:03:08 +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 = [
./backup.nix
./certificates.nix
./initrd.nix
./locale.nix
./networking.nix

View File

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