Consolidate configuration for mimir

This commit is contained in:
Erwin Boskma 2023-08-03 10:38:54 +02:00
parent e4bf26264a
commit 4af469403b
Signed by: erwin
SSH key fingerprint: SHA256:3F6Cm6I3erRqlBwEghZWAQl6eS5WrGTX1Vs/Evec1lQ
2 changed files with 69 additions and 80 deletions

View file

@ -3,7 +3,7 @@
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ nixos-hardware, nomachine, microvm, ... }: { nixos-hardware, nomachine, microvm, ... }:
{ pkgs, ... }: { pkgs, config, ... }:
{ {
imports = imports =
[ [
@ -15,8 +15,6 @@
microvm.nixosModules.host microvm.nixosModules.host
./hardware-configuration.nix
../../users/erwin ../../users/erwin
../../users/root ../../users/root
]; ];
@ -64,9 +62,58 @@
systemd.enable = true; systemd.enable = true;
}; };
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/boot";
fsType = "vfat";
};
fileSystems."/home" = {
device = "/dev/disk/by-label/home";
fsType = "ext4";
};
fileSystems."/yocto" = {
device = "/dev/disk/by-label/yocto";
fsType = "ext4";
};
swapDevices =
[{ device = "/dev/disk/by-label/swap"; }];
hardware = {
enableAllFirmware = true;
nvidia = {
modesetting.enable = true;
powerManagement.enable = true;
forceFullCompositionPipeline = true;
};
opengl = {
driSupport32Bit = true;
extraPackages = with pkgs; [
vaapiVdpau
];
};
};
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot = { boot = {
kernelPackages = pkgs.linuxPackages_6_3; kernelPackages = pkgs.linuxPackages_6_4;
initrd = {
availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
kernelModules = [ "dm-snapshot" ];
};
kernelModules = [ "kvm-amd" "apple-mfi-fastcharge" "zenpower" ];
# boot.kernelParams = [ "amd_pstate.shared_mem=1" ];
extraModulePackages = [ ] ++
(with config.boot.kernelPackages; [ rtl88x2bu zenpower cpupower ]);
loader = { loader = {
systemd-boot = { systemd-boot = {
enable = true; enable = true;
@ -199,11 +246,24 @@
services.tailscale.enable = true; services.tailscale.enable = true;
services.xserver.libinput = {
enable = true; services.xserver = {
mouse = { videoDrivers = [ "nvidia" ];
accelSpeed = "1.0";
naturalScrolling = true; screenSection = ''
Option "metamodes" "DP-0: nvidia-auto-select +0+0 {ForceFullCompositionPipeline=On, AllowGSYNCCompatible=On}, DP-4: nvidia-auto-select +3840+0 {ForceFullCompositionPipeline=On, AllowGSYNCCompatible=On}"
Option "TripleBuffer" "On"
'';
libinput = {
enable = true;
mouse = {
naturalScrolling = true;
accelSpeed = "1.0";
};
touchpad = {
naturalScrolling = true;
};
}; };
}; };

View file

@ -1,71 +0,0 @@
{ config, pkgs, ... }: {
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-amd" "apple-mfi-fastcharge" "zenpower" ];
# boot.kernelParams = [ "amd_pstate.shared_mem=1" ];
boot.extraModulePackages = [ ] ++
(with config.boot.kernelPackages; [ rtl88x2bu zenpower cpupower ]);
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/boot";
fsType = "vfat";
};
fileSystems."/home" = {
device = "/dev/disk/by-label/home";
fsType = "ext4";
};
fileSystems."/yocto" = {
device = "/dev/disk/by-label/yocto";
fsType = "ext4";
};
swapDevices =
[{ device = "/dev/disk/by-label/swap"; }];
powerManagement.cpuFreqGovernor = "ondemand";
hardware = {
# Renamed to fonts.optimizeForVeryHighDPI
# video.hidpi.enable = true;
enableAllFirmware = true;
nvidia = {
modesetting.enable = true;
powerManagement.enable = true;
forceFullCompositionPipeline = true;
};
opengl = {
driSupport32Bit = true;
extraPackages = with pkgs; [
vaapiVdpau
];
};
};
services.xserver = {
videoDrivers = [ "nvidia" ];
screenSection = ''
Option "metamodes" "DP-0: nvidia-auto-select +0+0 {ForceFullCompositionPipeline=On, AllowGSYNCCompatible=On}, DP-4: nvidia-auto-select +3840+0 {ForceFullCompositionPipeline=On, AllowGSYNCCompatible=On}"
Option "TripleBuffer" "On"
'';
libinput = {
enable = true;
mouse = {
naturalScrolling = true;
accelSpeed = "1.0";
};
touchpad = {
naturalScrolling = true;
};
};
};
}