mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 12:50:05 +00:00
⬆️ Update flake inputs (2025-08-19)
This commit is contained in:
parent
8f2edb8a0f
commit
6308798c9e
3 changed files with 28 additions and 24 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
|
@ -32,6 +32,8 @@
|
|||
};
|
||||
|
||||
archetypes.laptop.enable = true;
|
||||
|
||||
system.kernel.version = "linuxPackages_6_15";
|
||||
};
|
||||
|
||||
# Configure 8GB SWAP partition
|
||||
|
@ -43,9 +45,11 @@
|
|||
];
|
||||
|
||||
boot = {
|
||||
kernelModules = [ "8821ce" ];
|
||||
|
||||
# Configure additional kernel modules.
|
||||
extraModulePackages = [
|
||||
pkgs.linuxPackages_latest.rtl8821ce # Use custom network-card driver.
|
||||
extraModulePackages = with config.boot.kernelPackages; [
|
||||
rtl8821ce
|
||||
];
|
||||
|
||||
blacklistedKernelModules = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue