nixos-config/hardware/base.nix

14 lines
378 B
Nix
Raw Normal View History

2021-10-29 20:29:23 +02:00
{ config, lib, pkgs, ... }:
2019-10-19 12:55:35 +02:00
{
imports = [ ./firmware.nix ./planck.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 0 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
}