Compare commits

...

4 commits

Author SHA1 Message Date
e438ea4069 Commented VirtualBox. Not needed rn
Some checks failed
/ Build NixOS Iso (push) Failing after 0s
2024-08-26 15:36:02 +02:00
f0739c942b Merged Multiple InsecurePackages Options 2024-08-26 15:32:24 +02:00
be5b28c62d Added Insecure Exception for electron 2024-08-26 15:27:57 +02:00
baccef6f12 Removed Sound Option 2024-08-26 15:23:52 +02:00

View file

@ -81,7 +81,6 @@ in {
services.printing.enable = true;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
@ -295,6 +294,7 @@ in {
nixpkgs.config.allowUnfree = true;
nixpkgs.config.permittedInsecurePackages = [
"electron-28.3.3"
"electron-27.3.11"
];
# List packages installed in system profile. To search, run:
@ -348,12 +348,12 @@ in {
csdWrapper = "${pkgs.openconnect}/libexec/openconnect/hipreport.sh";
};
virtualisation.virtualbox.host = {
enable = true;
enableKvm = true;
enableHardening = false; # Incompatible with KVM
addNetworkInterface = false; # Incompatible with KVM
};
# virtualisation.virtualbox.host = {
# enable = true;
# enableKvm = true;
# enableHardening = false; # Incompatible with KVM
# addNetworkInterface = false; # Incompatible with KVM
# };
virtualisation.libvirtd.enable = true;
# Open ports in the firewall.