Compare commits

...

2 commits

Author SHA1 Message Date
39ccbbd2ed
add npkgs, rename channels.default -> channels.base 2026-03-07 17:57:37 +10:00
19987dd78e
return to bleeding 2026-03-07 17:57:18 +10:00
3 changed files with 12 additions and 10 deletions

7
flake.lock generated
View file

@ -105,15 +105,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1772846660, "lastModified": 1772870050,
"narHash": "sha256-BX9ZWoUvpamj2CJpQqqEnpjci1BukYd71UFdj5JXn8c=", "narHash": "sha256-il+K3xjwpb68ojPNt5yEF+TqTHWAiIBaXU0QMhw5ek8=",
"owner": "cry128", "owner": "cry128",
"repo": "cerulean", "repo": "cerulean",
"rev": "d9432d87a460c4f6dfb2602bba7e98267c2a0132", "rev": "7bd81f84e6c0c47e62e3498508e018d2a1a8c7e4",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "cry128", "owner": "cry128",
"ref": "bleeding",
"repo": "cerulean", "repo": "cerulean",
"type": "github" "type": "github"
} }

View file

@ -16,7 +16,7 @@
nt.url = "git+https://tearforge.net/cry/nt"; nt.url = "git+https://tearforge.net/cry/nt";
cerulean = { cerulean = {
url = "github:cry128/cerulean"; url = "github:cry128/cerulean/bleeding";
inputs = { inputs = {
nt.follows = "nt"; nt.follows = "nt";
systems.follows = "systems"; systems.follows = "systems";

View file

@ -1,11 +1,15 @@
{ {
lib, lib,
inputs, inputs,
system,
... ...
} @ args: { } @ args: {
nixpkgs.channels = { nixpkgs.channels = rec {
default = { # base
base = npkgs;
# nixpkgs-stable
npkgs = {
source = inputs.nixpkgs;
overlays = [ overlays = [
inputs.dobutterfliescry-net.overlays.default inputs.dobutterfliescry-net.overlays.default
(import ./overlays args) (import ./overlays args)
@ -29,10 +33,8 @@
# nixpkgs-unstable # nixpkgs-unstable
upkgs = { upkgs = {
inherit system;
source = inputs.nixpkgs-unstable; source = inputs.nixpkgs-unstable;
overlays = [ overlays = [
inputs.dobutterfliescry-net.overlays.default
inputs.millennium.overlays.default inputs.millennium.overlays.default
(import ./overlays args) (import ./overlays args)
]; ];
@ -44,7 +46,6 @@
# nixpkgs-master # nixpkgs-master
mpkgs = { mpkgs = {
inherit system;
source = inputs.nixpkgs-master; source = inputs.nixpkgs-master;
overlays = []; overlays = [];
config = { config = {