feat(flake): switch to channels.nixos.org #481

Merged
jalil merged 1 commit from push-rvovopwwlmzn into main 2025-05-14 11:59:58 +02:00
2 changed files with 26 additions and 32 deletions

53
flake.lock generated
View file

@ -303,34 +303,15 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1746957726, "lastModified": 1747065292,
"narHash": "sha256-k9ut1LSfHCr0AW82ttEQzXVCqmyWVA5+SHJkS5ID/Jo=", "narHash": "sha256-BA5Qjz9pzR+L7V3xNCqwALntygahHHCAXNz6R3ccZyw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a39ed32a651fdee6842ec930761e31d1f242cb94", "rev": "a39ed32a651fdee6842ec930761e31d1f242cb94",
"type": "github" "type": "tarball",
"url": "https://releases.nixos.org/nixos/24.11/nixos-24.11.717837.a39ed32a651f/nixexprs.tar.xz?rev=a39ed32a651fdee6842ec930761e31d1f242cb94"
}, },
"original": { "original": {
"owner": "NixOS", "type": "tarball",
"ref": "nixos-24.11", "url": "https://channels.nixos.org/nixos-24.11/nixexprs.tar.xz"
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1747060738,
"narHash": "sha256-ByfPRQuqj+nhtVV0koinEpmJw0KLzNbgcgi9EF+NVow=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "eaeed9530c76ce5f1d2d8232e08bec5e26f18ec1",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
} }
}, },
"nixvim": { "nixvim": {
@ -338,7 +319,9 @@
"flake-parts": [ "flake-parts": [
"flake-parts" "flake-parts"
], ],
"nixpkgs": "nixpkgs_2", "nixpkgs": [
"unstable"
],
"nuschtosSearch": [], "nuschtosSearch": [],
"systems": [ "systems": [
"systems" "systems"
@ -394,10 +377,7 @@
"stylix": "stylix", "stylix": "stylix",
"systems": "systems", "systems": "systems",
"treefmt-nix": "treefmt-nix", "treefmt-nix": "treefmt-nix",
"unstable": [ "unstable": "unstable"
"nixvim",
"nixpkgs"
]
} }
}, },
"stylix": { "stylix": {
@ -526,6 +506,19 @@
"repo": "treefmt-nix", "repo": "treefmt-nix",
"type": "github" "type": "github"
} }
},
"unstable": {
"locked": {
"lastModified": 1747005255,
"narHash": "sha256-bFJJ/qwB3VJ0nFuVYYHJXinT4tNJ2jhXTVT6SpYiFOM=",
"rev": "d89fc19e405cb2d55ce7cc114356846a0ee5e956",
"type": "tarball",
"url": "https://releases.nixos.org/nixos/unstable/nixos-25.05pre797896.d89fc19e405c/nixexprs.tar.xz?rev=d89fc19e405cb2d55ce7cc114356846a0ee5e956"
},
"original": {
"type": "tarball",
"url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -8,8 +8,8 @@
# Flake inputs # Flake inputs
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; nixpkgs.url = "https://channels.nixos.org/nixos-24.11/nixexprs.tar.xz";
unstable.follows = "nixvim/nixpkgs"; unstable.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
# Lix # Lix
lix-module = { lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/release-2.92.tar.gz"; url = "https://git.lix.systems/lix-project/nixos-module/archive/release-2.92.tar.gz";
@ -40,6 +40,7 @@
inputs = { inputs = {
flake-parts.follows = "flake-parts"; flake-parts.follows = "flake-parts";
systems.follows = "systems"; systems.follows = "systems";
nixpkgs.follows = "unstable";
# disable optional inputs # disable optional inputs
nuschtosSearch.follows = ""; nuschtosSearch.follows = "";
}; };