feat(nvim): add comment-box.nvim

This commit is contained in:
Moritz Böhme 2023-04-05 08:51:06 +02:00
parent d6fbbb945c
commit 8a6cdf7632
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
4 changed files with 51 additions and 16 deletions

View file

@ -1,10 +1,11 @@
{
description = "My awesome system config";
##############
### Inputs ###
##############
/*
Inputs
*/
inputs = {
master.url = "github:nixos/nixpkgs";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
@ -66,12 +67,20 @@
advanced-git-search-nvim.url = "github:aaronhallaert/advanced-git-search.nvim";
advanced-git-search-nvim.flake = false;
comment-box-nvim.url = "github:LudoPinelli/comment-box.nvim";
comment-box-nvim.flake = false;
attic.url = "github:zhaofengli/attic";
attic.inputs.nixpkgs.follows = "nixpkgs";
attic.inputs.nixpkgs-stable.follows = "stable";
attic.inputs.flake-utils.follows = "flake-utils";
};
/*
Outputs
*/
outputs =
inputs@{ self, nixpkgs, utils, ... }:
utils.lib.mkFlake {
@ -84,10 +93,11 @@
lib = nixpkgs.lib.extend
(self: super: { my = import ./lib { lib = self; }; });
################
### Overlays ###
################
/*
Overlays
*/
overlay = import ./overlays {
inherit inputs;
inherit (self) lib;
@ -108,10 +118,11 @@
overlays.default = self.overlay;
###############
### Modules ###
###############
/*
Modules
*/
nixosModules = utils.lib.exportModules [
./modules/profiles/base.nix
./modules/profiles/gaming.nix
@ -148,10 +159,11 @@
self.nixosModules.gaming
];
###############
### Outputs ###
###############
/*
Other Outputs
*/
outputsBuilder = channels:
with channels.nixpkgs; {
devShells.default = mkShell {