Remove unused declarations

This commit is contained in:
blahai 2025-01-12 18:38:06 +02:00
parent fdfd4e0434
commit 63eac33d05
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
3 changed files with 4 additions and 11 deletions

View file

@ -1,8 +1,4 @@
{
lib,
pkgs,
...
}: let
{lib, ...}: let
inherit (lib.modules) mkDefault;
in {
system = {

View file

@ -4,10 +4,10 @@
lib,
...
}: let
inherit (lib.modules) mkIf mkForce mkMerge mkDefault mkOverride;
inherit (lib.modules) mkIf mkForce mkMerge mkDefault;
inherit (lib.lists) optionals;
inherit (lib.options) mkOption mkEnableOption literalExpression;
inherit (lib.types) str raw listOf package;
inherit (lib.options) mkOption mkEnableOption;
inherit (lib.types) raw;
cfg = config.olympus.system.boot;
in {

View file

@ -1,12 +1,9 @@
{
lib,
pkgs,
config,
...
}: let
inherit (lib.modules) mkIf mkDefault;
inherit (lib.attrsets) optionalAttrs;
inherit (lib.options) mkEnableOption mkPackageOption;
cfg = config.olympus.system.boot;
in {