modularized user apps + corrected networking option that was specific to puter
This commit is contained in:
34
modules/userapps/devutils.nix
Normal file
34
modules/userapps/devutils.nix
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.neovim = {defaultEditor = true;};
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Dev stuff, most of it might be replaced by devenvs later on
|
||||
ghostty
|
||||
tealdeer
|
||||
vscodium
|
||||
gcc
|
||||
python
|
||||
alejandra
|
||||
devenv
|
||||
nodejs
|
||||
mermaid-cli
|
||||
rustup
|
||||
delta
|
||||
just
|
||||
kondo
|
||||
ciscoPacketTracer8
|
||||
# stuff needed by neovim
|
||||
vimPlugins.LazyVim
|
||||
texliveSmall # for pdflatex
|
||||
fzf
|
||||
lazygit
|
||||
tree-sitter
|
||||
neovim
|
||||
mcfly
|
||||
luajitPackages.luarocks-nix
|
||||
tectonic
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user