Commented graphic drivers. longer janitor time.

This commit is contained in:
2025-12-27 17:17:16 -05:00
parent e2b040e5f0
commit 1210a44ecc

View File

@@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page, on # your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`). # https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, self, paths, keys, ... }: { config, lib, pkgs, paths, keys, ... }:
{ {
# NAS Mounting # NAS Mounting
@@ -16,7 +16,7 @@
nix.gc = { nix.gc = {
automatic = true; automatic = true;
dates = "daily"; # You can also use "daily" or a cron-like spec dates = "daily"; # You can also use "daily" or a cron-like spec
options = "--delete-older-than 7d"; # Keep only 7 days of unreferenced data options = "--delete-older-than 30d";
}; };
nix.settings = { nix.settings = {
@@ -162,18 +162,18 @@
services.zfs.autoSnapshot.enable = true; services.zfs.autoSnapshot.enable = true;
services.zfs.autoScrub.enable = true; services.zfs.autoScrub.enable = true;
hardware.graphics = { # hardware.graphics = {
enable = true; # enable = true;
enable32Bit = true; # enable32Bit = true;
extraPackages = with pkgs; [ # extraPackages = with pkgs; [
rocmPackages.clr # rocmPackages.clr
rocmPackages.rocblas # rocmPackages.rocblas
rocmPackages.rocrand # rocmPackages.rocrand
rocmPackages.rocminfo # rocmPackages.rocminfo
rocmPackages.hipcc # rocmPackages.hipcc
rocmPackages.hiprt # rocmPackages.hiprt
]; # ];
}; # };
# Open ports in the firewall. # Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedTCPPorts = [ ... ];