working declarative nvim

need to add plugins
This commit is contained in:
2025-08-10 01:52:46 -04:00
parent 13fc210f8b
commit 7d76c105c1
4 changed files with 133 additions and 16 deletions

View File

@@ -12,6 +12,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
ghostty.url = "github:ghostty-org/ghostty";
nvf.url = "github:notashelf/nvf";
};
outputs = inputs @ {
@@ -21,12 +22,13 @@
darwin,
home-manager,
ghostty,
nvf,
...
}: let
userName = "wyatt";
userEmail = "wyatt@wyattjmiller.com";
extraSpecialArgs = {
inherit userName userEmail ghostty;
inherit userName userEmail ghostty nvf;
};
in {
meta = import ./meta;
@@ -57,7 +59,7 @@
nixosConfigurations."cloud" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit userName userEmail ghostty;
inherit userName userEmail;
hostname = "cloud";
role = "devel";
};