dell/xps/13-9360: Stop using i18n.consoleFont

trace: warning: The option `i18n.consoleFont' defined in
`/nix/var/nix/profiles/per-user/root/channels/nixos-hardware/dell/xps/13-9360'
has been renamed to `console.font'.
This commit is contained in:
Matthew Smith 2020-05-14 20:33:15 +01:00
parent 8e8e65ba45
commit 69b9bdd53a
1 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,14 @@
{ lib, pkgs, ... }:
{
# TODO: move to general HiDPI profile
# 4K screen, use bigger console font
# i18n.consoleFont deprecated in >=20.03, choose option based on OS version
lib.recursiveUpdate
(if lib.versionAtLeast (lib.versions.majorMinor lib.version) "20.03" then {
console.font = lib.mkDefault "latarcyrheb-sun32";
} else {
i18n.consoleFont = lib.mkDefault "latarcyrheb-sun32";
}) {
imports = [
../../../common/cpu/intel/kaby-lake
../../../common/pc/laptop
@ -16,9 +24,6 @@
hardware.firmware = lib.mkBefore [ pkgs.qca6174-firmware ];
# TODO: move to general HiDPI profile
i18n.consoleFont = lib.mkDefault "latarcyrheb-sun32"; # 4K screen, use bigger console font
# TODO: upstream to NixOS/nixpkgs
nixpkgs.overlays = [(final: previous: {
qca6174-firmware = final.callPackage ./qca6174-firmware.nix {};