diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-06-03 22:00:15 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-06-03 22:00:15 -0500 |
| commit | f75388f60a0292fb6aa1ba922d9ed34eb2e6b405 (patch) | |
| tree | 9f3374dd7b40e2fb96327b3ebc8e94a539436986 | |
| parent | d7bbc5124a3c4a026582293797f53c7d97c8a071 (diff) | |
| download | nixos-f75388f60a0292fb6aa1ba922d9ed34eb2e6b405.tar.xz nixos-f75388f60a0292fb6aa1ba922d9ed34eb2e6b405.zip | |
optiplex disable g610 config and fix nvidia for 26.05
| -rw-r--r-- | hosts/optiplex/configuration.nix | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/hosts/optiplex/configuration.nix b/hosts/optiplex/configuration.nix index 4c66de5..8563c2c 100644 --- a/hosts/optiplex/configuration.nix +++ b/hosts/optiplex/configuration.nix @@ -1,8 +1,4 @@ { config, lib, pkgs, home-manager, ... }: { - imports = [ - ./g610.nix - ]; - # Setup bootloader boot._loader.enable = true; @@ -48,8 +44,8 @@ autologin.enable = true; nas = { enable = true; - home.enable = true; - home.automount = true; + #home.enable = true; + #home.automount = true; office.enable = true; }; }; @@ -59,13 +55,14 @@ # Allow unfree for nvidia + others nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ - "nvidia-x11" + "nvidia-kernel-modules" "nvidia-settings" + "nvidia-x11" "spotify" "steam" "steam-original" - "steam-unwrapped" "steam-run" + "steam-unwrapped" ]; # Install more software @@ -84,7 +81,7 @@ powerManagement.enable = false; # Can cause bugs nvidiaSettings = true; open = false; # Not compatible w/ GTX-1050 - package = config.boot.kernelPackages.nvidiaPackages.stable; # Still good for 1050 + package = config.boot.kernelPackages.nvidiaPackages.legacy_580; forceFullCompositionPipeline = true; # Enables vsync }; |
