From dcb34a132f5cc1c69f517e8d1a90ac1ee9a2392c Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Thu, 27 Jul 2023 13:30:48 +0200 Subject: [PATCH] use self instead of inputs --- overlays/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/overlays/default.nix b/overlays/default.nix index 8cfeedb..bc69bf1 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,4 +1,4 @@ -{ pkgs, prismlauncher, nur, inputs, ... }: +{ pkgs, prismlauncher, nur, self, ... }: { nixpkgs = { @@ -11,13 +11,13 @@ (self: super: { tela-icon-theme = super.tela-icon-theme.overrideAttrs (old: { - src = inputs.tela-icon-theme; + src = self.inputs.tela-icon-theme; }); prismlauncher = super.prismlauncher.overrideAttrs (old: { patches = (old.patches or []) ++ [ - inputs.prism-game-options-patch - inputs.prism-ftb-patch + self.inputs.prism-game-options-patch + self.inputs.prism-ftb-patch ]; }); @@ -43,5 +43,10 @@ ]; }; + home-manager = { + useGlobalPkgs = true; + useUserPackages = true; + }; + system.stateVersion = "23.05"; }