feat(nvim): setup for ipynb dev work
All checks were successful
/ check (push) Successful in 20s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 1s

Setup:
- molten (run python code)
- otter (lsp in markdown codeblocks)
- jupytext (convert .ipynb files to .md files transparently)
- image (display images inside neovim (e.g. matplotlib graphs))
This commit is contained in:
Jalil David Salamé Messina 2024-10-05 22:37:58 +02:00
parent 4f7479490e
commit f30afe506b
Signed by: jalil
GPG key ID: F016B9E770737A0B
4 changed files with 42 additions and 21 deletions

View file

@ -74,15 +74,17 @@ in
};
environment.etc = keysFromGithub;
services.openssh.authorizedKeysFiles = builtins.map (path: "/etc/${path}") (
builtins.attrNames keysFromGithub
);
# Enable printer autodiscovery if printing is enabled
services.avahi = {
inherit (config.services.printing) enable;
nssmdns4 = true;
openFirewall = true;
services = {
# Enable printer autodiscovery if printing is enabled
avahi = {
inherit (config.services.printing) enable;
nssmdns4 = true;
openFirewall = true;
};
openssh.authorizedKeysFiles = builtins.map (path: "/etc/${path}") (
builtins.attrNames keysFromGithub
);
jupyter.enable = cfg.dev.enable;
};
users.defaultUserShell = pkgs.zsh;
# Open ports for spotifyd