nixvim: Initial commit

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-08-03 16:50:12 +03:00
parent 31e107a49a
commit 7b9a071ad9
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
3 changed files with 14 additions and 1 deletions

View file

@ -16,6 +16,8 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager"; inputs.home-manager.follows = "home-manager";
}; };
nixvim.url = "github:nix-community/nixvim";
nixvim.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { outputs = {
@ -23,6 +25,7 @@
home-manager, home-manager,
plasma-manager, plasma-manager,
nix-flatpak, nix-flatpak,
nixvim,
... ...
}: let }: let
system = "x86_64-linux"; system = "x86_64-linux";
@ -39,6 +42,8 @@
./plasma/plasma.nix ./plasma/plasma.nix
plasma-manager.homeManagerModules.plasma-manager plasma-manager.homeManagerModules.plasma-manager
nixvim.homeManagerModules.nixvim
./nixvim/nixvim.nix
]; ];
}; };
}; };

View file

@ -0,0 +1,9 @@
{
pkgs,
config,
...
}: {
programs.nixvim = {
enable = true;
};
}

View file

@ -11,7 +11,6 @@
# CLI # CLI
fzf fzf
neovim
htop htop
nnn nnn
wl-clipboard wl-clipboard