Split nixvim types

NixVim has branches to track the different hosts, so let's go ahead and
use those properly
This commit is contained in:
Greg Hellings
2024-08-17 00:04:27 -05:00
parent 1615a20b31
commit f4227928a3
4 changed files with 294 additions and 53 deletions
+4 -2
View File
@@ -4,13 +4,15 @@ let
unstable = args: (machine (args // {
channel = inputs.nixunstable;
hm = inputs.hmunstable;
nixvim = inputs.nixvimunstable;
}));
machine = {
channel ? inputs.nixstable,
extraMods ? [],
name,
system ? "x86_64-linux",
hm ? inputs.hm
hm ? inputs.hm,
nixvim ? inputs.nixvimstable,
}:
let
nixpkgs = import channel {
@@ -31,7 +33,7 @@ let
useUserPackages = true;
users.greg = import ../home/home.nix;
extraSpecialArgs = {
inherit inputs overlays;
inherit inputs overlays nixvim;
home = "/home/greg";
host = name;
};