nixos-config/hardware/base.nix

20 lines
473 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
2020-09-23 13:19:19 +02:00
imports = [ ./planck.nix ];
2020-03-13 18:45:29 +01:00
2020-09-07 12:46:50 +02:00
boot.supportedFilesystems = [ "btrfs" ];
2019-10-19 12:55:35 +02:00
boot.kernelPackages = pkgs.linuxPackages_latest;
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
# Bluetooth
hardware.bluetooth.enable = true;
2021-03-04 14:41:26 +01:00
hardware.bluetooth.settings = {
2020-09-23 13:19:19 +02:00
General = { Enable = "Source,Sink,Media,Socket"; };
2019-12-12 15:37:07 +01:00
};
2019-10-19 12:55:35 +02:00
}