From 1f4a545a3e78672ab62e2ccdd47acb382dc702e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Mon, 5 May 2025 01:05:02 +0200 Subject: [PATCH] System Gen20 @ 2025-05-05-01:05:00 by jonas@monolith --- flake.nix | 1 + hosts/monolith/configuration.nix | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b5f9f5d..28bf230 100644 --- a/flake.nix +++ b/flake.nix @@ -63,6 +63,7 @@ ({...}: {nixpkgs.overlays = [overlay-unstable];}) ({...}: {nixpkgs.config.allowUnfree = true;}) nixos-hardware.nixosModules.msi-b550-a-pro + nixos-hardware.nixosModules.common-gpu-nvidia inputs.sops-nix.nixosModules.sops ./modules ./hosts/comfy-station/configuration.nix diff --git a/hosts/monolith/configuration.nix b/hosts/monolith/configuration.nix index ba24c04..819d763 100644 --- a/hosts/monolith/configuration.nix +++ b/hosts/monolith/configuration.nix @@ -152,7 +152,7 @@ nvidiaSettings = true; # Optionally, you may need to select the appropriate driver version for your specific GPU. - package = config.boot.kernelPackages.nvidiaPackages.legacy_390; + package = config.boot.kernelPackages.nvidiaPackages.stable; }; # This value determines the NixOS release from which the default @@ -204,6 +204,9 @@ }; networking.hostName = "monolith"; # Define your hostname. + networking.extraHosts = '' + 127.0.0.1 monolith + ''; # Enable networking networking.networkmanager.enable = true;