diff options
| author | Skullheadx <andrew.montgomery@warpengine.ai> | 2026-06-29 12:02:08 -0400 |
|---|---|---|
| committer | Skullheadx <andrew.montgomery@warpengine.ai> | 2026-06-29 12:02:08 -0400 |
| commit | 4d69386815372dfa17db2c7aa12c022e275d8150 (patch) | |
| tree | 2f839143fd4bad5574825a95f4dd4b7ff25d104f | |
| parent | fix some work stuff (diff) | |
| download | nixos-4d69386815372dfa17db2c7aa12c022e275d8150.tar.gz nixos-4d69386815372dfa17db2c7aa12c022e275d8150.tar.bz2 nixos-4d69386815372dfa17db2c7aa12c022e275d8150.zip | |
unify nvim var across darwin and nixos
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 10 | ||||
| -rw-r--r-- | hosts/bear/configuration.nix | 4 |
2 files changed, 10 insertions, 4 deletions
@@ -96,7 +96,10 @@ darwinConfigurations = { kenosis = nix-darwin.lib.darwinSystem { - specialArgs = {inherit inputs nvim-darwin;}; + specialArgs = { + inherit inputs; + nvim = nvim-darwin; + }; modules = [ ./darwin-common.nix ./hosts/kenosis/configuration.nix @@ -120,7 +123,10 @@ ]; }; bear = nix-darwin.lib.darwinSystem { - specialArgs = {inherit inputs nvim-darwin;}; + specialArgs = { + inherit inputs; + nvim = nvim-darwin; + }; modules = [ ./darwin-common.nix ./hosts/bear/configuration.nix diff --git a/hosts/bear/configuration.nix b/hosts/bear/configuration.nix index ae17167..677e462 100644 --- a/hosts/bear/configuration.nix +++ b/hosts/bear/configuration.nix @@ -2,7 +2,7 @@ config, pkgs, inputs, - nvim-darwin, + nvim, ... }: { networking = { @@ -15,7 +15,7 @@ # List packages installed in system profile. To search by name, run: # $ nix-env -qaP | grep wget environment.systemPackages = with pkgs; [ - nvim-darwin.neovim + nvim.neovim senpai mpv pass |
