From 249b7d7bc010990058c2835c8383b98cb51a64fe Mon Sep 17 00:00:00 2001 From: Andre Date: Sun, 16 Jun 2024 14:32:29 -0400 Subject: [PATCH] chore: Namespacing; update top-level Readme --- README.md | 16 +++---- system/README.md | 12 ++++-- system/host/configuration.nix | 46 ++++++++++---------- system/modules/system/gpu/nvidia.nix | 63 +++++++++++++++------------- 4 files changed, 77 insertions(+), 60 deletions(-) diff --git a/README.md b/README.md index c70f696..41a2fbe 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ There are 3 main templates in this repository: - `darwin` - The system configuration for the Darwin operating system (macOS) -- `system` - The system configuration for the Linux operating system +- `system` - A complete NixOS system configuration template for the Linux operating system - `home-manager` - The configuration for the home-manager #### With Darwin (macOS) @@ -30,13 +30,15 @@ There are 3 main templates in this repository: #### With NixOS -1. Run `nix --extra-experimental-features nix-command --extra-experimental-features flakes flake new -t github:auxolotl/templates#system NixFiles` -2. Move into your new system with `cd NixFiles` -3. Fill in your `hostName` in `flake.nix` -4. Run `nixos-generate-config --show-hardware-config > hardware-configuration.nix` to generate configuration based on your filesystems and drivers -5. Run `nixos-rebuild build --flake .#hostName`, replacing hostName with your new hostName +1. Install a base NixOS system +2. Run `nix --extra-experimental-features nix-command --extra-experimental-features flakes flake new -t github:auxolotl/templates#system NixFiles` +3. Move into your new system with `cd NixFiles` +4. Fill in your `hostName` in `flake.nix` +5. Run `nixos-generate-config --show-hardware-config > host/hardware-configuration.nix` to generate configuration based on your filesystems and drivers +6. Edit the `host/configuration.nix` file with your desired system configuration +7. Run `nixos-rebuild build --flake .#hostName`, replacing hostName with your new hostName -Congratulations, you are now using Aux! +Congratulations, you are now using NixOS! #### With Home-manager diff --git a/system/README.md b/system/README.md index 9869f8f..35d4f4d 100644 --- a/system/README.md +++ b/system/README.md @@ -1,12 +1,14 @@ -# Auxolotl System Template +# Auxolotl New User System Configuration -A ready-to-run NixOS template with sane defaults. +A ready-to-run NixOS configuration with opinionated defaults. + +The goal of this config is to make it as easy as possible to build a NixOS system for an out-of-the-box experience similar to user-friendly distributions like Ubuntu, Fedora, or Mint. Options are available under the `aux.system` top-level namespace. Where possible, we provided simple boolean (true/false) flags for enabling things like GPU drivers and desktop environments. You can, of course, extend this template however you'd like. ## Getting Started 1. Install a fresh copy of NixOS and boot into your new system. 2. Download, copy, or clone this repository onto your new system. -3. Run `nixos-generate-config --show-hardware-config` to generate your system's `hardware-configuration.nix` file. Copy this file into the `host` folder, overwriting the existing file. +3. Run `nixos-generate-config --show-hardware-config` to generate your system's `hardware-configuration.nix` file. Copy this file into the `host` folder, overwriting the existing `hardware-configuration.nix` file. 4. Edit `flake.nix` and set the following variables: 1. Change `hostName` to the hostname you want to give this system. 2. If your system is running on an architecture other than 64-bit Linux, change `platform` to the architecture that you're using. Details on the various options are documented in `flake.nix`. @@ -30,6 +32,10 @@ modules = [ ] ``` +#### Nvidia GPU support + +For users with a hybrid Nvidia GPU setup (e.g. laptop users), there's some additional setup you need to do. This setup requires you to find the PCI bus IDs for your Nvidia GPU and your secondary GPU (usually an integrated Intel or AMD GPU). [The NixOS wiki has instructions on how to find these](https://nixos.wiki/wiki/Nvidia#Laptop_Configuration:_Hybrid_Graphics_.28Nvidia_Optimus_PRIME.29). Once you have the bus IDs, you can set `aux.system.gpu.nvidia.hybrid.busIDs.intel` or `aux.system.gpu.nvidia.hybrid.busIDs.amd`. + ### Secure Boot support This configuration supports [Secure Boot](https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface/Secure_Boot) systems, but with some additional setup required. Secure Boot is a UEFI standard meant to prevent the pre-boot process by requiring boot images to be signed by a trusted authority. The goal is to prevent tampering, e.g. by a malicious third-party replacing your kernel image with a compromised image. In NixOS, Secure Boot support is provided by the [Lanzaboote](https://github.com/nix-community/lanzaboote) project. diff --git a/system/host/configuration.nix b/system/host/configuration.nix index 6e3d629..945e215 100644 --- a/system/host/configuration.nix +++ b/system/host/configuration.nix @@ -8,6 +8,9 @@ let # Do not change this value! This tracks when NixOS was installed on your system. stateVersion = "24.11"; + + # Set the username for the initial user. + username = "axol"; in { imports = [ ./hardware-configuration.nix ]; @@ -20,20 +23,17 @@ in time.timeZone = "Europe/Amsterdam"; # Define your user account(s). Don't forget to set a password with ‘passwd’. - users.users = { - # Replace "axol" with your preferred username. - "axol" = { - isNormalUser = true; - extraGroups = [ "wheel" ]; + users.users.${username} = { + isNormalUser = true; + extraGroups = [ "wheel" ]; - # Enter any additional packages specific to this user here. - packages = with pkgs; [ ]; - }; + # Enter any additional packages specific to this user here. + packages = with pkgs; [ ]; }; # Configure home-manager for your user. # For configuration options, see https://nix-community.github.io/home-manager/#using-home-manager - home-manager.users.axol = { + home-manager.users.${username} = { # The state version is required and should stay at the version you originally installed. home.stateVersion = stateVersion; @@ -46,7 +46,7 @@ in # Configure the system. aux.system = { # Enable to allow unfree (e.g. closed source) packages. - # Some settings may override this (e.g. enabling NVIDIA GPU support). + # Some settings may override this (e.g. enabling Nvidia GPU support). # https://nixos.org/manual/nixpkgs/stable/#sec-allow-unfree allowUnfree = false; @@ -72,20 +72,24 @@ in intel.enable = false; nvidia = { - # Enable NVIDIA GPU support. + # Enable Nvidia GPU support. enable = false; - # Define the bus IDs for your GPUs. - # For more info on where to find bus IDs, see https://nixos.wiki/wiki/Nvidia#Configuring_Optimus_PRIME:_Bus_ID_Values_.28Mandatory.29 - busIDs = { - nvidia = ""; - intel = ""; - amd = ""; - }; + hybrid = { + # Enables support for hybrid GPUs (e.g. for laptops and systems with integrated GPUs). + enable = false; + # Define the bus IDs for your GPUs. + # For more info on where to find bus IDs, see https://nixos.wiki/wiki/Nvidia#Configuring_Optimus_PRIME:_Bus_ID_Values_.28Mandatory.29 + busIDs = { + nvidia = ""; + intel = ""; + amd = ""; + }; - # Enable sync mode for faster performance at the cost of higher battery usage. - # If sync is disabled, you'll need to run GPU-accelerated applications using 'nvidia-offload '. - sync = false; + # Enable sync mode for faster performance at the cost of higher battery usage. + # If sync is disabled, you'll need to run GPU-accelerated applications using 'nvidia-offload '. + sync = false; + }; }; }; diff --git a/system/modules/system/gpu/nvidia.nix b/system/modules/system/gpu/nvidia.nix index 5f0a186..72d734a 100644 --- a/system/modules/system/gpu/nvidia.nix +++ b/system/modules/system/gpu/nvidia.nix @@ -1,4 +1,4 @@ -# Enables NVIDIA GPU support. +# Enables Nvidia GPU support. { pkgs, config, @@ -11,28 +11,31 @@ in { options = { aux.system.gpu.nvidia = { - enable = lib.mkEnableOption (lib.mdDoc "Enables NVIDIA GPU support."); - sync = lib.mkEnableOption ( - lib.mdDoc "Enables sync mode for faster performance at the cost of higher battery usage." - ); - busIDs = { - nvidia = lib.mkOption { - description = "The bus ID for your Nvidia GPU."; - type = lib.types.str; - example = "PCI:0:2:0"; - default = ""; - }; - intel = lib.mkOption { - description = "The bus ID for your integrated Intel GPU. If you don't have an Intel GPU, you can leave this blank."; - type = lib.types.str; - example = "PCI:14:0:0"; - default = ""; - }; - amd = lib.mkOption { - description = "The bus ID for your integrated AMD GPU. If you don't have an AMD GPU, you can leave this blank."; - type = lib.types.str; - example = "PCI:54:0:0"; - default = ""; + enable = lib.mkEnableOption (lib.mdDoc "Enables Nvidia GPU support."); + hybrid = { + enable = lib.mkEnableOption (lib.mdDoc "Enables hybrid GPU support."); + sync = lib.mkEnableOption ( + lib.mdDoc "Enables sync mode for faster performance at the cost of higher battery usage." + ); + busIDs = { + nvidia = lib.mkOption { + description = "The bus ID for your Nvidia GPU."; + type = lib.types.str; + example = "PCI:0:2:0"; + default = ""; + }; + intel = lib.mkOption { + description = "The bus ID for your integrated Intel GPU. If you don't have an Intel GPU, you can leave this blank."; + type = lib.types.str; + example = "PCI:14:0:0"; + default = ""; + }; + amd = lib.mkOption { + description = "The bus ID for your integrated AMD GPU. If you don't have an AMD GPU, you can leave this blank."; + type = lib.types.str; + example = "PCI:54:0:0"; + default = ""; + }; }; }; }; @@ -55,21 +58,23 @@ in services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ]; hardware.opengl.extraPackages = with pkgs; [ vaapiVdpau ]; + hardware.nvidia = { modesetting.enable = true; nvidiaSettings = lib.mkIf (config.aux.system.ui.desktops.enable) true; - prime = { + package = config.boot.kernelPackages.nvidiaPackages.stable; + prime = lib.mkIf cfg.hybrid.enable { - offload = lib.mkIf (!cfg.sync) { + offload = lib.mkIf (!cfg.hybrid.sync) { enable = true; enableOffloadCmd = true; # Provides `nvidia-offload` command. }; - sync.enable = lib.mkIf cfg.sync true; + sync.enable = lib.mkIf cfg.hybrid.sync true; - nvidiaBusId = cfg.busIDs.nvidia; - intelBusId = lib.mkIf (cfg.busIDs.intel != "") cfg.busIDs.intel; - amdgpuBusId = lib.mkIf (cfg.busIDs.amd != "") cfg.busIDs.amd; + nvidiaBusId = cfg.hybrid.busIDs.nvidia; + intelBusId = lib.mkIf (cfg.hybrid.busIDs.intel != "") cfg.hybrid.busIDs.intel; + amdgpuBusId = lib.mkIf (cfg.hybrid.busIDs.amd != "") cfg.hybrid.busIDs.amd; }; }; };