My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at dde1eb55cfd2f7b39bcd1a22d74c0e529c4e1071 26 lines 469 B view raw
1{ inputs, ... }: 2{ 3 perSystem = 4 { 5 pkgs, 6 ... 7 }: 8 { 9 packages = { 10 dishvim = 11 (inputs.nvf.lib.neovimConfiguration { 12 inherit pkgs; 13 modules = [ 14 ./dishvim.nix 15 ]; 16 }).neovim; 17 minvim = 18 (inputs.nvf.lib.neovimConfiguration { 19 inherit pkgs; 20 modules = [ 21 ./minvim.nix 22 ]; 23 }).neovim; 24 }; 25 }; 26}