summary refs log tree commit diff
path: root/release/installer
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-04-27 19:26:22 +0000
committerAlyssa Ross <hi@alyssa.is>2023-04-27 19:26:22 +0000
commit69393c7c80c43349c907d516c69eaf557b443304 (patch)
tree2097f109ff5a328c6b99226d4b8ec407b9682c1f /release/installer
parent8c5a4707b7efffee2f038909fa87e092c47e8ab9 (diff)
downloadspectrum-69393c7c80c43349c907d516c69eaf557b443304.tar
spectrum-69393c7c80c43349c907d516c69eaf557b443304.tar.gz
spectrum-69393c7c80c43349c907d516c69eaf557b443304.tar.bz2
spectrum-69393c7c80c43349c907d516c69eaf557b443304.tar.lz
spectrum-69393c7c80c43349c907d516c69eaf557b443304.tar.xz
spectrum-69393c7c80c43349c907d516c69eaf557b443304.tar.zst
spectrum-69393c7c80c43349c907d516c69eaf557b443304.zip
Run deadnix
Signed-off-by: Alyssa Ross <hi@alyssa.is>
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;