Skip to content

Commit

Permalink
⬆️ update unstable-pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
shelken committed Oct 25, 2024
1 parent 406767c commit c20cce2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 12 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 9 additions & 5 deletions home/apps/dev/core.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
pkgs-unstable,
...
}: {
home.sessionVariables = {
# for go
GOPROXY = "https://goproxy.io";
Expand All @@ -17,10 +21,10 @@
go

#-- rust
cargo
rustc
rust-analyzer
rustfmt
pkgs-unstable.cargo
pkgs-unstable.rustc
pkgs-unstable.rust-analyzer
pkgs-unstable.rustfmt

#-- deploy
ansible
Expand Down
12 changes: 8 additions & 4 deletions home/apps/neovim/packages.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
pkgs-unstable,
...
}: {
home.packages = with pkgs;
[
# c
Expand Down Expand Up @@ -43,9 +47,9 @@
lua-language-server

#-- rust
rust-analyzer
cargo # rust package manager
rustfmt
pkgs-unstable.rust-analyzer
pkgs-unstable.cargo # rust package manager
pkgs-unstable.rustfmt

#-- misc
marksman # lsp for markdown
Expand Down

0 comments on commit c20cce2

Please sign in to comment.