feat: comment out nixpkgs-unstable, we use unstable by default (#232)

* feat: comment out nixpkgs-unstable, we use unstable by default

Signed-off-by: Ryan Yin <xiaoyin_c@qq.com>

* fix: typo...

---------

Signed-off-by: Ryan Yin <xiaoyin_c@qq.com>
This commit is contained in:
Ryan Yin
2025-11-01 21:21:57 +08:00
committed by GitHub
parent 0c2dcc0734
commit 34fdd92351
18 changed files with 93 additions and 107 deletions

View File

@@ -1,6 +1,5 @@
{
pkgs,
pkgs-unstable,
...
}:
{

View File

@@ -2,7 +2,6 @@
config,
lib,
pkgs,
pkgs-unstable,
...
}:
###############################################################################
@@ -29,7 +28,7 @@ in
programs.neovim = {
enable = true;
package = pkgs-unstable.neovim-unwrapped;
package = pkgs.neovim-unwrapped;
# defaultEditor = true; # set EDITOR at system-wide level
viAlias = true;

View File

@@ -1,6 +1,6 @@
{
pkgs,
pkgs-unstable,
pkgs-master,
...
}:
{
@@ -36,7 +36,7 @@
marksman # language server for markdown
glow # markdown previewer
pandoc # document converter
pkgs-unstable.hugo # static site generator
pkgs-master.hugo # static site generator
#-- sql
sqlfluff
@@ -90,11 +90,11 @@
#-- rust
# we'd better use the rust-overlays for rust development
pkgs-unstable.rustc
pkgs-unstable.rust-analyzer
pkgs-unstable.cargo # rust package manager
pkgs-unstable.rustfmt
pkgs-unstable.clippy # rust linter
pkgs-master.rustc
pkgs-master.rust-analyzer
pkgs-master.cargo # rust package manager
pkgs-master.rustfmt
pkgs-master.clippy # rust linter
#-- golang
go
@@ -141,7 +141,7 @@
# fnlfmt # fennel
# (
# if pkgs.stdenv.isLinux && pkgs.stdenv.isx86
# then pkgs-unstable.akkuPackages.scheme-langserver
# then pkgs-master.akkuPackages.scheme-langserver
# else pkgs.emptyDirectory
# )
# ]

View File

@@ -1,6 +1,5 @@
{
pkgs,
pkgs-unstable,
...
}:
{