From c47c8a42ee21ba4444fe0b860d4debc910d2919a Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Tue, 22 Apr 2025 12:00:45 +0100 Subject: [PATCH] refactor: nixos-* -> nixpkgs-* --- flake.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 1649d92..7863b57 100644 --- a/flake.nix +++ b/flake.nix @@ -1,8 +1,8 @@ { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/26d499fc9f1d567283d5d56fcf367edd815dba1d"; - nixos-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - nixos-master.url = "github:NixOS/nixpkgs/master"; + nixpkgs-unstable.url = "github:NixOS/nixpkgs/ebe4301cbd8f81c4f8d3244b3632338bbeb6d49c"; + nixpkgs-master.url = "github:NixOS/nixpkgs/master"; local-unstable.url = "path:///home/giulio/dev/nixpkgs"; pepeflake.url = "git+https://git.giugl.io/peperunas/pepeflake"; teslamate-flake.url = "github:teslamate-org/teslamate/v1.32.0"; @@ -20,8 +20,8 @@ outputs = { self , nixpkgs - , nixos-unstable - , nixos-master + , nixpkgs-unstable + , nixpkgs-master , local-unstable , home-manager , teslamate-flake @@ -61,8 +61,8 @@ overlays = extOverlays; }; - unstablePkgs = importNixpkgs { flake = nixos-unstable; }; - masterPkgs = importNixpkgs { flake = nixos-master; }; + unstablePkgs = importNixpkgs { flake = nixpkgs-unstable; }; + masterPkgs = importNixpkgs { flake = nixpkgs-master; }; localPkgs = importNixpkgs { flake = local-unstable; }; teslamatePkgs = importNixpkgs { flake = teslamate-flake; }; agenixPkgs = importNixpkgs { flake = agenix-flake; }; @@ -95,7 +95,7 @@ inherit (pkgs) newScope; in makeScope newScope (self: rec { - inherit nixpkgs home-manager nixos-unstable; + inherit nixpkgs home-manager nixpkgs-unstable; inherit (self.callPackage ./lib/utils.nix { }) mkSysRole mkHomeRole; inherit (user) mkUser;