mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
nixvimConfigs/fiesta: init
This commit is contained in:
parent
356bbdc14e
commit
670f52ce30
@ -7,6 +7,7 @@
|
||||
# The environment configurations.
|
||||
./home-manager.nix
|
||||
./nixos.nix
|
||||
./nixvim.nix
|
||||
];
|
||||
|
||||
_module.args = {
|
||||
|
12
configs/flake-parts/nixvim.nix
Normal file
12
configs/flake-parts/nixvim.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
setups.nixvim = {
|
||||
configs.fiesta = {
|
||||
nixpkgsBranches = [
|
||||
"nixos-unstable"
|
||||
"nixos-stable"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
15
configs/nixvim/fiesta/default.nix
Normal file
15
configs/nixvim/fiesta/default.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user