nixos-config/hardware/base.nix

14 lines
369 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
2019-10-19 12:55:35 +02:00
{
2023-09-29 14:09:58 +02:00
imports = [ ./firmware.nix ./zsa.nix ];
2020-03-13 18:45:29 +01:00
2021-10-29 20:29:23 +02:00
boot.supportedFilesystems = lib.mkDefault [ "btrfs" ];
boot.kernelPackages = lib.mkOverride 800 pkgs.linuxPackages_latest;
2019-10-19 12:55:35 +02:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2020-02-15 10:46:07 +01:00
services.smartd.enable = true;
services.smartd.notifications.x11.enable = true;
2019-10-19 12:55:35 +02:00
}