nixos-config/shell.nix

41 lines
798 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { }, extraPackages ? [ ] }:
2025-01-29 04:48:19 +00:00
let run-workflow-in-vm = pkgs.callPackage ./apps/run-workflow-with-vm { };
in pkgs.mkShell {
packages = with pkgs;
[
# My internal applications.
run-workflow-in-vm
2024-02-17 06:56:39 +00:00
2025-01-29 04:48:19 +00:00
age
asciidoctor
disko
deploy-rs
hcloud
npins
nixos-anywhere
home-manager
git
sops
nix-update
2023-06-28 01:13:40 +00:00
2025-01-29 04:48:19 +00:00
bind
opentofu
2025-01-29 04:48:19 +00:00
jq
wl-clipboard
2025-01-29 04:48:19 +00:00
# Language servers for various parts of the config that uses a language.
lua-language-server
pyright
nil
terraform-ls
2022-11-19 03:00:53 +00:00
2025-01-29 04:48:19 +00:00
# Formatters...
treefmt # The universal formatter (if you configured it).
stylua # ...for Lua.
black # ...for Python.
nixfmt # ...for Nix.
] ++ extraPackages;
}