From 26c6eac937883fc0d53c6ed596bef8e4e5ae7b43 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 26 Apr 2023 22:18:23 +0100 Subject: [PATCH] delete config boot.tftp.enable as it doesn't enable anything --- modules/base.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/base.nix b/modules/base.nix index a03218a2..54f8cb55 100644 --- a/modules/base.nix +++ b/modules/base.nix @@ -2,7 +2,6 @@ let inherit (lib) mkEnableOption mkOption types isDerivation hasAttr ; inherit (pkgs.pseudofile) dir symlink; -# inherit (pkgs) busybox; inherit (pkgs.liminix.networking) address interface; inherit (pkgs.liminix.services) bundle; @@ -52,7 +51,6 @@ in { # the right to change them if I think of better ones. ipaddr = mkOption { type = types.str; }; serverip = mkOption { type = types.str; }; - enable = mkOption { type = types.boolean; }; }; }; };