nixvim: Initial commit
Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
parent
31e107a49a
commit
7b9a071ad9
3 changed files with 14 additions and 1 deletions
|
@ -16,6 +16,8 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.home-manager.follows = "home-manager";
|
||||
};
|
||||
nixvim.url = "github:nix-community/nixvim";
|
||||
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
|
@ -23,6 +25,7 @@
|
|||
home-manager,
|
||||
plasma-manager,
|
||||
nix-flatpak,
|
||||
nixvim,
|
||||
...
|
||||
}: let
|
||||
system = "x86_64-linux";
|
||||
|
@ -39,6 +42,8 @@
|
|||
./plasma/plasma.nix
|
||||
plasma-manager.homeManagerModules.plasma-manager
|
||||
|
||||
nixvim.homeManagerModules.nixvim
|
||||
./nixvim/nixvim.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
9
home-manager/nixvim/nixvim.nix
Normal file
9
home-manager/nixvim/nixvim.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
# CLI
|
||||
fzf
|
||||
neovim
|
||||
htop
|
||||
nnn
|
||||
wl-clipboard
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue