Compare commits
4 Commits
6e788b4e31
...
0645c2f371
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0645c2f371 | ||
|
|
40a11a09d9 | ||
| b93dc9f16b | |||
| 44d1a444ba |
9
configuration/common/certificates.nix
Normal file
9
configuration/common/certificates.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
|
||||
environment.sessionVariables = {
|
||||
REQUESTS_CA_BUNDLE = config.security.pki.caBundle;
|
||||
};
|
||||
|
||||
}
|
||||
@@ -3,6 +3,7 @@
|
||||
{
|
||||
imports = [
|
||||
./backup.nix
|
||||
./certificates.nix
|
||||
./initrd.nix
|
||||
./locale.nix
|
||||
./networking.nix
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user