nixfmt everything

This commit is contained in:
2022-06-13 23:12:52 +01:00
parent cd91fb622c
commit 94986efa4a
2 changed files with 10 additions and 12 deletions
+9 -10
View File
@@ -1,14 +1,13 @@
{ pkgs, lib, system, ... }: {
programs.neovim.plugins = with pkgs.vimPlugins; [
# More fancy shit
nvim-treesitter
# Language stuff
nvim-lspconfig
trouble-nvim
rust-vim
] ++ lib.optionals (system != "aarch64-linux") [
vim-go
];
programs.neovim.plugins = with pkgs.vimPlugins;
[
# More fancy shit
nvim-treesitter
# Language stuff
nvim-lspconfig
trouble-nvim
rust-vim
] ++ lib.optionals (system != "aarch64-linux") [ vim-go ];
programs.neovim.extraConfig = ''
lua <<EOF
${builtins.readFile ./dev.lua}