Skip to content

Commit

Permalink
Remove neovim-nightly dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
pta2002 committed Dec 10, 2021
1 parent b558219 commit 6cdfa0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 100 deletions.
94 changes: 1 addition & 93 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
description = "A neovim configuration system for NixOS";

inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";

outputs = { self, nixpkgs, ... }@inputs: rec {
overlays = [ inputs.neovim-nightly.overlay ];

nixosModules.nixvim = import ./nixvim.nix { nixos = true; };
homeManagerModules.nixvim = import ./nixvim.nix { homeManager = true; };
nixOnDroidModules.nixvim = import ./nixvim.nix { nixOnDroid = true; };

# This is a simple container for testing
nixosConfigurations.container = nixpkgs.lib.nixosSystem {
Expand All @@ -26,11 +22,9 @@

imports = [ nixosModules.nixvim ];

nixpkgs.overlays = [ inputs.neovim-nightly.overlay ];

programs.nixvim = {
enable = true;
package = pkgs.neovim-nightly;
package = pkgs.neovim;
colorschemes.tokyonight = { enable = true; };

extraPlugins = [ pkgs.vimPlugins.vim-nix ];
Expand Down

0 comments on commit 6cdfa0b

Please sign in to comment.