This commit is contained in:
biscuit
2025-06-03 11:29:36 -05:00
parent 7df80623d5
commit efede58a6d
4 changed files with 12 additions and 8 deletions
+1 -4
View File
@@ -13,10 +13,6 @@
nixvim.url = "github:nix-community/nixvim"; nixvim.url = "github:nix-community/nixvim";
nixvim.inputs.nixpkgs.follows = "nixpkgs"; nixvim.inputs.nixpkgs.follows = "nixpkgs";
# monolisa.inputs.nixpkgs.follows = "nixpkgs";
# fred-drake.url = "github:fred-drake/neovim";
# fred-drake.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { outputs = {
@@ -24,6 +20,7 @@
nixpkgs, nixpkgs,
home-manager, home-manager,
unlisted-fonts, unlisted-fonts,
nixvim,
... ...
} @ inputs: let } @ inputs: let
info = import ./info.nix; info = import ./info.nix;
+1 -1
View File
@@ -1,6 +1,6 @@
{...}: { {...}: {
programs.btop = { programs.btop = {
enable = true; enable = true;
settings = { settings = {
vim_keys = true; vim_keys = true;
}; };
+8 -1
View File
@@ -4,7 +4,14 @@
pkgs, pkgs,
... ...
}: { }: {
plugins.web-devicons.enable = true; # `plugins.mini.enable` with `plugins.mini.modules.icons` and `plugins.mini.mockDevIcons`.
# plugins.web-devicons.enable = true;
plugins.mini = {
enable = true;
mockDevIcons = true;
modules = [
];
};
plugins.telescope = { plugins.telescope = {
enable = true; enable = true;
}; };
+2 -2
View File
@@ -16,13 +16,13 @@ in {
# ripgrep # ripgrep
# ]; # ];
imports = [ imports = [
inputs.nixvim.homeManagerModules.default inputs.nixvim.homeModules.nixvim
]; ];
programs.neovim.enable = true; programs.neovim.enable = true;
programs.nixvim = { programs.nixvim = {
imports = [ imports = [
./custom/dashboard.nix ./custom/dashboard.nix
./custom/telescope.nix # ./custom/telescope.nix
]; ];
enable = true; enable = true;
plugins = { plugins = {