nixos-config/hardware/base.nix

14 lines
378 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./firmware.nix ./planck.nix ];
boot.supportedFilesystems = lib.mkDefault [ "btrfs" ];
boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
services.smartd.enable = true;
services.smartd.notifications.x11.enable = true;
}