mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
shells/nix: update devshell env
This commit is contained in:
parent
47f6ea27d5
commit
991a7f4fab
@ -2,21 +2,25 @@
|
|||||||
# Also, it's fun to have a file named `nix.nix`.
|
# Also, it's fun to have a file named `nix.nix`.
|
||||||
{ mkShell
|
{ mkShell
|
||||||
, lib
|
, lib
|
||||||
|
, deadnix
|
||||||
, jq
|
, jq
|
||||||
|
, nil
|
||||||
, nix-tree
|
, nix-tree
|
||||||
, nixfmt
|
, nixfmt
|
||||||
|
, nixpkgs-hammering
|
||||||
, nurl
|
, nurl
|
||||||
, rnix-hashes
|
, rnix-hashes
|
||||||
, rnix-lsp
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkShell {
|
mkShell {
|
||||||
packages = [
|
packages = [
|
||||||
|
deadnix # Search for the dead.
|
||||||
jq # It will use some JSON with its lockfile so better be ready to use this.
|
jq # It will use some JSON with its lockfile so better be ready to use this.
|
||||||
nixfmt # Ideally, it would be nicer if the codebase has their preferred formatter but we'll go with the most common formatter(?).
|
nil # Language server.
|
||||||
rnix-hashes # Quick utility for converting hashes.
|
|
||||||
rnix-lsp # Make your editing experience nicer with a nice language server.
|
|
||||||
nix-tree # Suprisingly nice exploration tool for your packages in the store directory.
|
nix-tree # Suprisingly nice exploration tool for your packages in the store directory.
|
||||||
|
nixfmt # Ideally, it would be nicer if the codebase has their preferred formatter but we'll go with the most common formatter(?).
|
||||||
|
nixpkgs-hammering # Beat nixpkgs derivations up to shape.
|
||||||
nurl # Nice way to catch up with some things.
|
nurl # Nice way to catch up with some things.
|
||||||
|
rnix-hashes # Quick utility for converting hashes.
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user