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.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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
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
|
# CLI
|
||||||
fzf
|
fzf
|
||||||
neovim
|
|
||||||
htop
|
htop
|
||||||
nnn
|
nnn
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue