Simplify nixpkgs eval

This commit is contained in:
Greg Hellings
2025-12-16 09:07:55 -06:00
parent c77c4a8ff6
commit 1a528f10de
10 changed files with 25 additions and 155 deletions
-12
View File
@@ -1,20 +1,10 @@
{
pkgs,
nixvimunstable,
colmena,
...
}:
let
inherit (pkgs.stdenv.hostPlatform) system;
vim = (
nixvimunstable.legacyPackages.${system}.makeNixvim (
import ./home/baseline/vim/config.nix {
inherit pkgs;
inherit (pkgs) lib;
config.nixpkgs.config.allowUnfree = false; # I have tried to allow it, but I don't seem able to do so
}
)
);
in
{
default = pkgs.mkShell {
@@ -28,9 +18,7 @@ in
gzip
inject
inject-darwin
nushell
vim
xonsh
zellij
];
};