diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/home-manager/noweb/default.nix | 2 | ||||
-rw-r--r-- | shared/nixos/common-nix-settings/default.nix | 5 |
2 files changed, 3 insertions, 4 deletions
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. |