Set boot.kernelPackages to pkgs.linuxPackages_latest by default. This ensures Nomarchy users benefit from the latest hardware support and security features in the mainline kernel.
40 lines
806 B
Nix
40 lines
806 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./options.nix
|
|
./state.nix
|
|
./branding.nix
|
|
./graphics.nix
|
|
./nix.nix
|
|
./scripts.nix
|
|
./systemd.nix
|
|
./virtualization.nix
|
|
./fonts.nix
|
|
./hardware.nix
|
|
./audio.nix
|
|
./bluetooth.nix
|
|
./network.nix
|
|
./impermanence.nix
|
|
./browser.nix
|
|
# Tier 1 system features (all opt-in via nomarchy.system.*).
|
|
./snapper.nix
|
|
./laptop.nix
|
|
./desktop.nix
|
|
./accessibility.nix
|
|
./gaming.nix
|
|
./hibernate.nix
|
|
./containers.nix
|
|
./pam.nix
|
|
./input-method.nix
|
|
../../themes/engine/plymouth.nix
|
|
../../themes/engine/sddm.nix
|
|
];
|
|
|
|
time.timeZone = lib.mkDefault config.nomarchy.system.timezone;
|
|
|
|
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|