added neovim

This commit is contained in:
naturallaw77 2024-08-31 20:28:23 -07:00
parent e0342ef5c0
commit 5fe30e3f4c
2 changed files with 14 additions and 2 deletions

View File

@ -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;

View File

@ -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
];
};
};
}
}