From 1210a44ecccc938a863e916c7b4cd155b275626b Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Sat, 27 Dec 2025 17:17:16 -0500 Subject: [PATCH] Commented graphic drivers. longer janitor time. --- hosts/lazyworkhorse/configuration.nix | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/hosts/lazyworkhorse/configuration.nix b/hosts/lazyworkhorse/configuration.nix index 447df00..70284e3 100644 --- a/hosts/lazyworkhorse/configuration.nix +++ b/hosts/lazyworkhorse/configuration.nix @@ -2,7 +2,7 @@ # 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`). -{ config, lib, pkgs, self, paths, keys, ... }: +{ config, lib, pkgs, paths, keys, ... }: { # NAS Mounting @@ -16,7 +16,7 @@ nix.gc = { automatic = true; 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 = { @@ -162,18 +162,18 @@ services.zfs.autoSnapshot.enable = true; services.zfs.autoScrub.enable = true; - hardware.graphics = { - enable = true; - enable32Bit = true; - extraPackages = with pkgs; [ - rocmPackages.clr - rocmPackages.rocblas - rocmPackages.rocrand - rocmPackages.rocminfo - rocmPackages.hipcc - rocmPackages.hiprt - ]; - }; + # hardware.graphics = { + # enable = true; + # enable32Bit = true; + # extraPackages = with pkgs; [ + # rocmPackages.clr + # rocmPackages.rocblas + # rocmPackages.rocrand + # rocmPackages.rocminfo + # rocmPackages.hipcc + # rocmPackages.hiprt + # ]; + # }; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ];