Scaffolds a NixOS flake for ringtail (gaming/compute workstation, RTX 4080): - Declarative disk partitioning via disko (GPT, EFI + ext4 on NVMe) - NVIDIA proprietary drivers with CUDA support - Sway/Wayland desktop with greetd, PipeWire audio, Steam - Tailscale for tailnet connectivity - Ansible playbook + mise task for ongoing provisioning via nixos-rebuild - Pulumi auth key for tailnet bootstrap (tag:homelab, tag:blumeops) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
658 B
Nix
18 lines
658 B
Nix
# Do not modify this file! It was generated by 'nixos-generate-config'
|
|
# and may be overwritten by future invocations. Please make changes
|
|
# to configuration.nix instead.
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
boot.extraModulePackages = [ ];
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|