nix-components
pegasust 2022-12-08 01:53:47 -07:00
parent bbd41b7272
commit d1ffdebe2f
1 changed files with 5 additions and 1 deletions

View File

@ -22,7 +22,7 @@ let nvim_pkgs = [
(pkgs.python310Full.withPackages (pypkgs: [ (pkgs.python310Full.withPackages (pypkgs: [
# pypkgs.python-lsp-server # python-lsp. Now we'll have to tell mason to look for this # pypkgs.python-lsp-server # python-lsp. Now we'll have to tell mason to look for this
pypkgs.pynvim # nvim provider pypkgs.pynvim # nvim provider
pypkgs.ujson # pylsp seems to rely on this. satisfy it lol pypkgs.ujson # pylsp seems to rely on this. satisfy it lol
])) ]))
]; in ]; in
{ {
@ -57,8 +57,12 @@ let nvim_pkgs = [
] ++ (myHome.packages or [ ]) ++ nvim_pkgs); ] ++ (myHome.packages or [ ]) ++ nvim_pkgs);
## Configs ## ## Configs ##
# neovim
xdg.configFile."nvim/init.lua".text = builtins.readFile ../neovim/init.lua; xdg.configFile."nvim/init.lua".text = builtins.readFile ../neovim/init.lua;
# starship sh
xdg.configFile."starship.toml".text = builtins.readFile ../starship/starship.toml; xdg.configFile."starship.toml".text = builtins.readFile ../starship/starship.toml;
# zk
xdg.configFile."config.toml".text = builtins.readFile ../zk/config.toml;
## Programs ## ## Programs ##
programs.jq = { programs.jq = {