nixvimConfigs/fiesta: init

This commit is contained in:
Gabriel Arazas 2024-01-25 22:51:05 +08:00
parent 356bbdc14e
commit 670f52ce30
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
3 changed files with 28 additions and 0 deletions

View File

@ -7,6 +7,7 @@
# The environment configurations.
./home-manager.nix
./nixos.nix
./nixvim.nix
];
_module.args = {

View File

@ -0,0 +1,12 @@
{ lib, ... }:
{
setups.nixvim = {
configs.fiesta = {
nixpkgsBranches = [
"nixos-unstable"
"nixos-stable"
];
};
};
}

View File

@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
colorschemes.kanagawa.enable = true;
clipboard.providers.wl-copy.enable = true;
clipboard.providers.xclip.enable = true;
plugins.neorg.enable = true;
plugins.nvim-autopairs.enable = true;
extraPlugins = with pkgs; [
decker
];
}