-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathshell.nix
More file actions
53 lines (46 loc) · 1.13 KB
/
Copy pathshell.nix
File metadata and controls
53 lines (46 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ pkgs ? import <nixpkgs> { }, extraPackages ? [ ] }:
let
run-workflow-in-vm = pkgs.callPackage ./apps/run-workflow-with-vm { };
fetch-website-icon = pkgs.callPackage ./lib/fetchers/fetch-website-icon/package/package.nix { };
fds-flock-of-fetchers = pkgs.callPackage ./apps/fds-fetcher-flock/nix/package.nix { };
in pkgs.mkShell {
packages = with pkgs;
[
# My internal applications.
run-workflow-in-vm
fetch-website-icon
fds-flock-of-fetchers
just
age
asciidoctor
disko
deploy-rs
hcloud
npins
nixos-anywhere
home-manager
git
sops
nix-update
nixdoc
bind
opentofu
# The typical scripting toolkit.
go
jq
wl-clipboard
# Language servers for various parts of the config that uses a language.
lua-language-server
pyright
nil
terraform-ls
gopls
# Formatters...
treefmt # The universal formatter (if you configured it).
stylua # ...for Lua.
black # ...for Python.
nixfmt # ...for Nix.
# Debuggers...
delve
] ++ extraPackages;
}