summary refs log tree commit diff
path: root/release/installer
diff options
context:
space:
mode:
Diffstat (limited to 'release/installer')
-rw-r--r--release/installer/app/default.nix2
-rw-r--r--release/installer/configuration.nix2
-rw-r--r--release/installer/default.nix1
3 files changed, 2 insertions, 3 deletions
diff --git a/release/installer/app/default.nix b/release/installer/app/default.nix
index 695a9cd..f0d739e 100644
--- a/release/installer/app/default.nix
+++ b/release/installer/app/default.nix
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: MIT
 # SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>
 
-{ lib, eos-installer, fetchurl, fetchpatch }:
+{ eos-installer, fetchurl }:
 
 let
   logo = fetchurl {
diff --git a/release/installer/configuration.nix b/release/installer/configuration.nix
index 50d154f..745a594 100644
--- a/release/installer/configuration.nix
+++ b/release/installer/configuration.nix
@@ -16,7 +16,7 @@ in
 
   boot.plymouth.enable = true;
   boot.plymouth.logo = pkgs.callPackage (
-    { lib, runCommand, fetchurl, inkscape }:
+    { runCommand, fetchurl, inkscape }:
     runCommand "spectrum-logo.png" {
       nativeBuildInputs = [ inkscape ];
       svg = fetchurl {
diff --git a/release/installer/default.nix b/release/installer/default.nix
index 44f3be2..34bded5 100644
--- a/release/installer/default.nix
+++ b/release/installer/default.nix
@@ -5,7 +5,6 @@ import ../../lib/eval-config.nix ({ config, extraConfig ? {}, ... }:
 with config.pkgs;
 
 let
-  inherit (builtins) head match storeDir;
   inherit (nixos {
     imports = [ ./configuration.nix extraConfig ];
   }) config;