From 69749ff4d13b0e24a8fd3f379c15c3cb61b36d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 30 Apr 2023 15:34:28 +0200 Subject: [PATCH] Remove stable upstream switched to renamed packages which are only available on nixos-unstable --- flake.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index ca0404f..1a02073 100644 --- a/flake.nix +++ b/flake.nix @@ -8,11 +8,9 @@ }; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - - nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-22.11"; }; - outputs = { self, jovian, nixpkgs, nixpkgs-stable }: + outputs = { self, jovian, nixpkgs }: let inherit (nixpkgs) lib; @@ -60,7 +58,6 @@ hydraJobs = { iso = lib.hydraJob self.nixosConfigurations.jovian.config.system.build.isoImage; system = lib.hydraJob self.nixosConfigurations.jovian.config.system.build.toplevel; - system-stable = lib.hydraJob (nixosSystem' nixpkgs-stable).config.system.build.toplevel; }; }; }