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 +}