nix module: Fix attempted workaround for option name change

`system.stateVersion` is about *system state*, i.e., stuff that was
created by old software versions on users' machines, like SQL
databases that have moved to a different directory or such.

It will not help figure out whether an option has been renamed.
This commit is contained in:
Tristan Daniël Maat 2023-08-23 02:23:00 +02:00 committed by Mihai Fufezan
parent 3576ee61f1
commit 4d14edd8a5
1 changed files with 6 additions and 4 deletions

View File

@ -2,6 +2,7 @@ inputs: {
config,
lib,
pkgs,
options,
...
}:
with lib; let
@ -62,10 +63,11 @@ in {
config = mkIf cfg.enable {
environment.systemPackages = [cfg.finalPackage];
fonts =
if versionOlder config.system.stateVersion "23.11"
then {enableDefaultFonts = mkDefault true;}
else {enableDefaultPackages = mkDefault true;};
# NixOS changed the name of this attribute between NixOS 23.05 and
# 23.11
fonts = if builtins.hasAttr "enableDefaultPackages" options.fonts
then {enableDefaultPackages = mkDefault true;}
else {enableDefaultFonts = mkDefault true;};
hardware.opengl.enable = mkDefault true;