From 5fe30e3f4cc7a4f2d7f9a851e8e1a3d7d020e273 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Sat, 31 Aug 2024 20:28:23 -0700 Subject: [PATCH] added neovim --- configuration.nix | 8 ++++++++ flake.nix | 8 ++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index d5da488..a8131f8 100755 --- a/configuration.nix +++ b/configuration.nix @@ -188,6 +188,14 @@ in ]; + programs.nixvim = { + enable = true; + + colorschemes.catppuccin.enable = true; + plugins.lualine.enable = true; + }; + + programs.bash.promptInit = "fish"; programs.fish = { enable = true; diff --git a/flake.nix b/flake.nix index 4199c6d..994b162 100755 --- a/flake.nix +++ b/flake.nix @@ -11,9 +11,11 @@ agenix.inputs.darwin.follows = ""; + nixvim.url = "github:nix-community/nixvim"; + }; - outputs = { self, nixpkgs, nix-bitcoin, agenix, ... }: + outputs = { self, nixpkgs, nix-bitcoin, nixvim, agenix, ... }: { @@ -32,7 +34,9 @@ agenix.nixosModules.default + nixvim.nixosModules.nixvim + ]; }; }; -} \ No newline at end of file +}