chore: update base hardware config

This commit is contained in:
Felix Schröter 2021-10-29 20:29:23 +02:00
parent 58a0fbf5a5
commit 2da8da04b6
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

View file

@ -1,10 +1,10 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
imports = [ ./planck.nix ];
boot.supportedFilesystems = [ "btrfs" ];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.supportedFilesystems = lib.mkDefault [ "btrfs" ];
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;