System Gen20 @ 2025-05-05-01:05:00 by jonas@monolith

This commit is contained in:
Jonas Röger 2025-05-05 01:05:02 +02:00
parent 8dde3d0851
commit 1f4a545a3e
2 changed files with 5 additions and 1 deletions

View File

@ -63,6 +63,7 @@
({...}: {nixpkgs.overlays = [overlay-unstable];}) ({...}: {nixpkgs.overlays = [overlay-unstable];})
({...}: {nixpkgs.config.allowUnfree = true;}) ({...}: {nixpkgs.config.allowUnfree = true;})
nixos-hardware.nixosModules.msi-b550-a-pro nixos-hardware.nixosModules.msi-b550-a-pro
nixos-hardware.nixosModules.common-gpu-nvidia
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
./modules ./modules
./hosts/comfy-station/configuration.nix ./hosts/comfy-station/configuration.nix

View File

@ -152,7 +152,7 @@
nvidiaSettings = true; nvidiaSettings = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU. # 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 # This value determines the NixOS release from which the default
@ -204,6 +204,9 @@
}; };
networking.hostName = "monolith"; # Define your hostname. networking.hostName = "monolith"; # Define your hostname.
networking.extraHosts = ''
127.0.0.1 monolith
'';
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;