-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Why === * A [new stable NixOS version was released](https://nixos.org/manual/nixos/stable/release-notes.html#sec-release-24.05) What changed === * ran ./add.sh 24.05 * added some missing 24.05 changes * make unstable channel match 24.05 * remove replitPackages overlay for 24.05 channel Test plan === * CI builds for 24.05
- Loading branch information
Showing
7 changed files
with
42 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
default=nixpkgs-23.11 | ||
default=nixpkgs-24.05 | ||
channel=$default | ||
|
||
function error() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{}: | ||
|
||
let | ||
sources = import ../nix/sources.nix; | ||
pkgs = import ../default.nix { | ||
sources = sources; | ||
channel = sources."nixpkgs-24.05"; | ||
}; | ||
in | ||
{ | ||
inherit (pkgs) replitPackages; | ||
inherit (pkgs.nodePackages) typescript-language-server yarn prettier svelte-language-server; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters