From f489e7bc17c919975257580da97c8dd1da5a3c0b Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Thu, 9 Feb 2023 23:22:43 +0100 Subject: [PATCH] deadnix --- flake.nix | 2 +- modules/basic-tools/default.nix | 4 ++-- modules/entertainment.nix | 3 --- 3 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 modules/entertainment.nix diff --git a/flake.nix b/flake.nix index 60cd1be..190e3dd 100644 --- a/flake.nix +++ b/flake.nix @@ -44,7 +44,7 @@ }) // { - overlays.default = final: prev: { + overlays.default = _final: prev: { inherit (self.packages.${prev.system}) slick; }; diff --git a/modules/basic-tools/default.nix b/modules/basic-tools/default.nix index 932b8ac..b5fd154 100644 --- a/modules/basic-tools/default.nix +++ b/modules/basic-tools/default.nix @@ -39,8 +39,8 @@ # override default nix shell nixpkgs# behaviour to use current flake lock nix.registry = - let flakes = lib.filterAttrs (name: value: value ? outputs) inputs.self.inputs; - in builtins.mapAttrs (name: v: { flake = v; }) flakes; + let flakes = lib.filterAttrs (_name: value: value ? outputs) inputs.self.inputs; + in builtins.mapAttrs (_name: v: { flake = v; }) flakes; nix.nixPath = lib.mapAttrsToList (name: value: "${name}=${value.outPath}") inputs.self.inputs; diff --git a/modules/entertainment.nix b/modules/entertainment.nix deleted file mode 100644 index 92d3e93..0000000 --- a/modules/entertainment.nix +++ /dev/null @@ -1,3 +0,0 @@ -{ pkgs, ... } -{ -}