diff --git a/flake.nix b/flake.nix index 0bd3ce2..8ea43c7 100644 --- a/flake.nix +++ b/flake.nix @@ -21,7 +21,7 @@ }; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; hyprland.url = "github:hyprwm/Hyprland"; home-manager.url = "github:nix-community/home-manager/release-24.05"; diff --git a/home/programs/neovim.nix b/home/programs/neovim.nix new file mode 100644 index 0000000..144c688 --- /dev/null +++ b/home/programs/neovim.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + programs.neovim = { + enable = true; + viAlias = true; + vimAlias = true; + defaultEditor = true; + plugins = with pkgs.vimPlugins; [ + nvim-tree-lua + nvim-treesitter.withAllGrammars + ]; + }; +}