add nixvim config
This commit is contained in:
parent
53b8cd76ab
commit
fb335d75b3
3 changed files with 646 additions and 21 deletions
14
flake.nix
14
flake.nix
|
|
@ -10,6 +10,16 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nixvim = {
|
||||
url = "github:nix-community/nixvim";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nixvim-config = {
|
||||
type = "gitlab";
|
||||
owner = "MFlossmann";
|
||||
repo = "nixvim_config";
|
||||
};
|
||||
|
||||
disko = {
|
||||
url = "github:nix-community/disko";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
@ -36,5 +46,9 @@
|
|||
|
||||
homeManagerModules.default = ./modules/home;
|
||||
nixosModules.default = ./modules/nixOS;
|
||||
|
||||
overlays.additions = final: _prev: {
|
||||
nixvim = nixvim-config.packages.${_prev.system}.default;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue