Temporary override of insecure package block

This commit is contained in:
2025-07-09 10:29:14 +01:00
parent 7bff4c1905
commit 3c5d818176
2 changed files with 8 additions and 2 deletions

View File

@@ -89,6 +89,10 @@
cudaSupport = true; cudaSupport = true;
# Workaround for https://github.com/nix-community/home-manager/issues/2942 # Workaround for https://github.com/nix-community/home-manager/issues/2942
allowUnfreePredicate = _: true; allowUnfreePredicate = _: true;
# Temporary until obsidian gets updated
permittedInsecurePackages = [
"electron-34.5.8"
];
}; };
}; };
extraSpecialArgs = { extraSpecialArgs = {

View File

@@ -18,8 +18,10 @@
]; ];
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config = {
nixpkgs.config.cudaSupport = true; allowUnfree = true;
cudaSupport = true;
};
boot.blacklistedKernelModules = ["nouveau"]; boot.blacklistedKernelModules = ["nouveau"];
hardware = { hardware = {