From 7e910f5bc5743327b15807af8d8fd4ab4e5de816 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Fri, 23 Aug 2024 08:27:17 +0200 Subject: [PATCH] style: cleanup --- modules/options/style/fonts.nix | 8 ++------ modules/options/style/qt.nix | 1 - 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/modules/options/style/fonts.nix b/modules/options/style/fonts.nix index f3ede93..65eb853 100644 --- a/modules/options/style/fonts.nix +++ b/modules/options/style/fonts.nix @@ -1,10 +1,6 @@ -{ - config, - lib, - ... -}: let +{lib, ...}: let inherit (lib) mkOption; - inherit (lib.types) nullOr package listOf; + inherit (lib.types) package listOf; in { options.modules.system.fonts = { # This defines extra fonts to be installed on the system. diff --git a/modules/options/style/qt.nix b/modules/options/style/qt.nix index 14b4ef0..58ce50c 100644 --- a/modules/options/style/qt.nix +++ b/modules/options/style/qt.nix @@ -1,5 +1,4 @@ { - config, lib, pkgs, ...