Machines/WinMax2: add bmi260 module from nur

This commit is contained in:
Toast 2024-01-21 21:06:22 +01:00
parent 17f58cfeba
commit 3c3b192f35
2 changed files with 17 additions and 4 deletions

View file

@ -1,16 +1,25 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }: { config, lib, flakeSelf, modulesPath, ... }:
let let
# \x20 is the escape code for a space # \x20 is the escape code for a space
ssdLabel = ''Win\\x20Max\\x202\\x20SSD''; ssdLabel = ''Win\\x20Max\\x202\\x20SSD'';
# You need to do fucky shit to import modules from the NUR
# https://github.com/nix-community/NUR#using-the-flake-in-nixos
nur = import flakeSelf.inputs.nur {
nurpkgs = import flakeSelf.inputs.nixpkgs-unstable-raw {
system = "x86_64-linux";
};
};
in in
{ {
imports = imports = [
[ (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
nur.repos.cryolitia.modules.bmi260
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" "sdhci_pci" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" "sdhci_pci" ];
@ -66,5 +75,8 @@ in
swapDevices = [ ]; swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware = {
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
sensor.iio.bmi260.enable = true;
};
} }

View file

@ -1,6 +1,7 @@
{ config, lib, pkgs, flakeSelf, ... }: { config, lib, pkgs, flakeSelf, ... }:
{ {
imports = [ flakeSelf.inputs.nur.nixosModules.nur ];
environment = { environment = {
# As of the 1st of May 2023, the default packages are nano, perl, rsync and strace # As of the 1st of May 2023, the default packages are nano, perl, rsync and strace
# I don't need any of them, so I just empty the list # I don't need any of them, so I just empty the list