Merge branch 'NixOS:master' into master

This commit is contained in:
Nunya Bidness 2025-07-07 19:25:48 -05:00 committed by GitHub
commit c0b045c56b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
440 changed files with 6929 additions and 3484 deletions

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }:
{ config, lib, ... }:
{
imports = [
@ -10,7 +10,7 @@
];
# Enables ACPI platform profiles
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.1") {
kernelModules = [ "hp-wmi" ];
};

View file

@ -5,7 +5,7 @@
../../common/cpu/intel/kaby-lake
../../common/gpu/nvidia/pascal
../../common/pc/laptop
../../common/pc/laptop/ssd
../../common/pc/ssd
../../common/pc/laptop/hdd
];
}

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }:
{ config, lib, ... }:
{
imports = [
@ -12,7 +12,7 @@
];
# Enables ACPI platform profiles
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.1") {
kernelModules = [ "hp-wmi" ];
};

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }:
{ config, lib, ... }:
{
imports = [
@ -11,7 +11,7 @@
];
# Enables ACPI platform profiles
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.1") {
kernelModules = [ "hp-wmi" ];
};

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }:
{ config, lib, ... }:
{
imports = [
@ -10,7 +10,7 @@
];
# Enables ACPI platform profiles
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.1") {
kernelModules = [ "hp-wmi" ];
};
}

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }:
{ config, lib, ... }:
{
imports = [
@ -11,7 +11,7 @@
];
# Enables ACPI platform profiles
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.1") {
kernelModules = [ "hp-wmi" ];
};