Update jaci drivers

This commit is contained in:
Nathan Anderson 2024-09-19 17:38:46 -06:00
parent cc8add034d
commit 4ba888bc9e
3 changed files with 12 additions and 6 deletions

View File

@ -55,11 +55,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1719254875, "lastModified": 1726463316,
"narHash": "sha256-ECni+IkwXjusHsm9Sexdtq8weAq/yUyt1TWIemXt3Ko=", "narHash": "sha256-gI9kkaH0ZjakJOKrdjaI/VbaMEo9qBbSUl93DnU7f4c=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2893f56de08021cffd9b6b6dfc70fd9ccd51eb60", "rev": "99dc8785f6a0adac95f5e2ab05cc2e1bf666d172",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -27,7 +27,7 @@
nix.gc = { nix.gc = {
automatic = true; automatic = true;
dates = "weekly"; dates = "weekly";
options = "--delete-older-than 1w"; options = "--delete-older-than 21d";
}; };
# Optimize storage # Optimize storage

View File

@ -136,8 +136,14 @@
security.polkit.enable = true; security.polkit.enable = true;
hardware.opengl = { hardware.opengl = {
enable = true; # Mesa
driSupport = true; # enable = true;
# Vulkan
# driSupport = true;
# Rocm support and vulkan drivers
extraPackages = with pkgs; [
rocmPackages.clr.icd
];
}; };
}; };
} }