mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
allow firmware and unfree
This commit is contained in:
parent
a69d669bb6
commit
6fddbc2f40
@ -63,8 +63,5 @@ in
|
||||
|
||||
boot.kernelParams = [];
|
||||
|
||||
# Allow unfree packages.
|
||||
nixpkgs.config.allowUnfree = false;
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages;
|
||||
}
|
||||
|
@ -62,8 +62,5 @@ in
|
||||
|
||||
boot.kernelParams = [];
|
||||
|
||||
# Allow unfree packages.
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
}
|
||||
|
@ -63,9 +63,6 @@ in
|
||||
# S Sat Sep 23 16:11:52 2023 p4 kernel: TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
|
||||
boot.kernelParams = [ "tsc=unstable" ];
|
||||
|
||||
# Allow unfree packages.
|
||||
nixpkgs.config.allowUnfree = false;
|
||||
|
||||
# List all available kernel versions:
|
||||
# `nix repl` -> `:l <nixpkgs>` -> `pkgs.linuxPackages` and press `TAB`
|
||||
# Default.
|
||||
|
@ -63,8 +63,5 @@ in
|
||||
|
||||
boot.kernelParams = [];
|
||||
|
||||
# Allow unfree packages.
|
||||
nixpkgs.config.allowUnfree = false;
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages;
|
||||
}
|
||||
|
@ -2,9 +2,14 @@
|
||||
|
||||
{
|
||||
# Firmware.
|
||||
#
|
||||
# Enables e.g. Intel microcode updates.
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
#hardware.enableAllFirmware = true;
|
||||
# Defaults to `config.hardware.enableAllFirmware`.
|
||||
#hardware.enableRedistributableFirmware = true;
|
||||
hardware.enableAllFirmware = true;
|
||||
|
||||
# Allow unfree packages.
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
Loading…
Reference in New Issue
Block a user