Skip to content

Commit

Permalink
refactor(nix): select a more realistic set of packages
Browse files Browse the repository at this point in the history
  • Loading branch information
wincent committed Mar 21, 2024
1 parent 3322f9a commit 70470aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions aspects/nix/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ nix-shell

- Official site, [nixos.org](https://nixos.org/).
- Search ([search.nixos.org](https://search.nixos.org/)): eg. for finding `git` is installed with the `git` package, `nvim` is installed with the `neovim` package, and `npm` is installed with the `nodejs` package etc.
- Version information ([status.nixos.org](https://status.nixos.org/): eg. for pinning to specific versions.
- ["Nix (package manager)" on Wikipedia](https://en.wikipedia.org/wiki/Nix_%28package_manager%29).
7 changes: 5 additions & 2 deletions aspects/nix/files/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ in

pkgs.mkShellNoCC {
packages = with pkgs; [
cowsay
lolcat
bun
git
neovim
nodejs
zsh
];
}

0 comments on commit 70470aa

Please sign in to comment.