Compare commits

...

3 commits

Author SHA1 Message Date
Harald Hoyer d7a5993121 feat(git): Add SSL CA info configuration
Configured Git to use the system's CA certificates for SSL verification. This ensures secure connections to remote repositories.
2024-09-04 13:37:01 +02:00
Harald Hoyer 3280781536 feat(git): configure custom SSL CA certificate for HTTP
Added an HTTP SSL CA certificate configuration to enhance security and ensure trusted connections. This change sets the CA certificate file path to '/etc/ssl/certs/ca-certificates.crt'.
2024-09-04 13:23:08 +02:00
Harald Hoyer bcf049144c feat(nixos/services): add qemu-system-x86_64-uefi script
Added a custom shell script for qemu-system-x86_64 enabling UEFI support using OVMF. This ensures that the command uses the specified OVMF firmware for UEFI boot.
2024-09-04 13:23:01 +02:00
3 changed files with 7 additions and 0 deletions

View file

@ -60,6 +60,7 @@ in
clean = "${pkgs.metacfg.rot8000}/bin/rot8000"; clean = "${pkgs.metacfg.rot8000}/bin/rot8000";
smudge = "${pkgs.metacfg.rot8000}/bin/rot8000"; smudge = "${pkgs.metacfg.rot8000}/bin/rot8000";
}; };
http.sslCAinfo = "/etc/ssl/certs/ca-certificates.crt";
}; };
}; };
}; };

View file

@ -67,6 +67,11 @@ in
vim vim
virt-manager virt-manager
wget wget
(pkgs.writeShellScriptBin "qemu-system-x86_64-uefi" ''
qemu-system-x86_64 \
-bios ${pkgs.OVMF.fd}/FV/OVMF.fd \
"$@"
'')
]; ];
shells = [ pkgs.fish pkgs.bash ]; shells = [ pkgs.fish pkgs.bash ];
}; };

View file

@ -54,6 +54,7 @@ in
interactive.diffFilter = "${pkgs.delta}/bin/delta --color-only"; interactive.diffFilter = "${pkgs.delta}/bin/delta --color-only";
merge.conflictStyle = "diff3"; merge.conflictStyle = "diff3";
diff.colorMoved = "default"; diff.colorMoved = "default";
http.sslCAinfo = "/etc/ssl/certs/ca-certificates.crt";
}; };
}; };
}; };