add kernel modules, comments, and re-arrange

This commit is contained in:
iFargle 2023-08-21 13:21:01 +09:00
parent db5eaad404
commit 1e298cbb0d
7 changed files with 16 additions and 33 deletions

View file

@ -1,10 +1,13 @@
{ config, pkgs, hostname, ... }: {
imports = [
# Hyprland
# ./hyprland-conf.nix
# ./waybar-conf.nix
# ./rofi-conf.nix
# ./mako-conf.nix
# ./swaylock-conf.nix
# Gnome
./gnome-dconf.nix
];
}

View file

@ -9,6 +9,7 @@
../../../modules/powertop.nix
];
# https://nixos.wiki/wiki/Gamemode
programs.gamemode = {
enable = true;
settings = {
@ -57,13 +58,14 @@
open = false;
dynamicBoost.enable = true;
nvidiaPersistenced = false;
package = config.boot.kernelPackages.nvidiaPackages.stable;
package = config.boot.kernelPackages.nvidiaPackages.latest;
powerManagement.finegrained = true;
powerManagement.enable = true;
nvidiaSettings = true;
modesetting.enable = true;
prime = {
reverseSync.enable = true;
reverseSync.enable = false;
sync.enable = false;
offload = {
enable = true;
enableOffloadCmd = true;
@ -74,13 +76,6 @@
};
};
# environment.variables = {
# GBM_BACKEND = "nvidia-drm";
# LIBVA_DRIVER_NAME = "nvidia";
# __GLX_VENDOR_LIBRARY_NAME = "nvidia";
# };
environment.systemPackages = with pkgs; [
# Fingerprint software
fprintd
@ -90,16 +85,10 @@
vulkan-tools
gwe
nvtop-nvidia
# Game related things
gamemode
# support both 32- and 64-bit applications
wineWowPackages.stable
# wine-staging (version with experimental features)
# wineWowPackages.staging
# winetricks (all versions)
winetricks
# native wayland support (unstable)
wineWowPackages.waylandFull
];
}

View file

@ -2,7 +2,5 @@
imports = [
./hardware-configuration.nix
./configuration.nix
./networking.nix
];
}

View file

@ -2,9 +2,9 @@
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
boot.initrd.kernelModules = [ "acpi_backlight=native" ];
boot.kernelModules = [ "kvm-intel" "acpi_call" ];
boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
fileSystems."/" = {
device = "/dev/disk/by-label/ROOT";
@ -34,6 +34,6 @@
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View file

@ -1,3 +0,0 @@
{ config, pkgs, ... }: {
}

View file

@ -1,9 +1,5 @@
{pkgs, config, hostname, ...}: {
# Enable networking
# Imports for host-specific configs:
imports = [
../hosts/${hostname}/nixos/networking.nix
];
# Enable networking with NM and automatically allow port 22 over Tailscale
networking = {
networkmanager = {

View file

@ -7,9 +7,9 @@
autoUpgrade = {
enable = true;
allowReboot = false;
# channel = https://channels.nixos.org/nixos-23.05;
# https://search.nixos.org/options?channel=unstable&show=system.autoUpgrade.flake&from=0&size=50&sort=relevance&type=packages&query=Autoupgrade
flake = "path:/etc/nixos/flake.nix"; # Should be /etc/nixos/flake.nix
dates = "daily";
flake = "path:/etc/nixos/flake.nix";
option = "switch";
};
};