mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
16 lines
280 B
Nix
16 lines
280 B
Nix
{ 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
|
|
];
|
|
}
|