nixos-config/hardware/base.nix
Felix Schröter 4cee402863
feat(browsers): update firefox configurations
- update Mullvad Browser config
- update Firefox / Arkenfox config
2023-05-31 16:02:19 +02:00

14 lines
380 B
Nix

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