From 334250012b41c3fd2b2dc177b0a14bd23e13d672 Mon Sep 17 00:00:00 2001 From: Linnnus Date: Sat, 21 Dec 2024 16:04:31 +0100 Subject: Define packages in overlays/additions --- shared/home-manager/noweb/default.nix | 2 +- shared/nixos/common-nix-settings/default.nix | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'shared') diff --git a/shared/home-manager/noweb/default.nix b/shared/home-manager/noweb/default.nix index 1506431..72a1568 100644 --- a/shared/home-manager/noweb/default.nix +++ b/shared/home-manager/noweb/default.nix @@ -5,7 +5,7 @@ yalafi-shell ]; - programs.neovim.plugins = with pkgs; [ + programs.neovim.plugins = with pkgs.vimPlugins; [ vim-noweb ]; diff --git a/shared/nixos/common-nix-settings/default.nix b/shared/nixos/common-nix-settings/default.nix index b5c0a02..6a34cac 100644 --- a/shared/nixos/common-nix-settings/default.nix +++ b/shared/nixos/common-nix-settings/default.nix @@ -37,10 +37,9 @@ lib.mkMerge [ # Use overlays from this repo for building system configuration as well as system-wide. # See: https://nixos.wiki/wiki/Overlays#Using_nixpkgs.overlays_from_configuration.nix_as_.3Cnixpkgs-overlays.3E_in_your_NIX_PATH "nixpkgs-overlays=${flakeInputs.self}/overlays/compat.nix" - - # This will additionally add out inputs to the system's legacy channels - # Making legacy nix commands consistent as well, awesome! ] + # This will additionally add out inputs to the system's legacy channels + # Making legacy nix commands consistent as well, awesome! ++ lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry; # Add shell-utilities which are only relevant if Nix is enabled. -- cgit v1.2.3