renaming nixpkgs-unstable to nixos-unstable

This commit is contained in:
Ranomier 2025-03-27 19:12:25 +01:00
parent 24a96cd8dc
commit cec7ed3818
4 changed files with 64 additions and 63 deletions

View file

@ -19,7 +19,7 @@
};
# NixOS unstable channel
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
# ready made hardware configurations. e.G.: Power saving
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
@ -35,7 +35,7 @@
self,
nixpkgs,
nixos-hardware,
nixpkgs-unstable,
nixos-unstable,
nix-flatpak,
home-manager,
nixos-generators,
@ -53,7 +53,7 @@
host_helper = hostname: {
${hostname} = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = {inherit inputs;} // {inherit nixos-unstable;};
modules = [
./hosts/${hostname}/${hostname}.nix
];