From ab67c509836d5292fcb645327d0432310459ab3f Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Tue, 20 Aug 2024 00:05:52 +0200 Subject: [PATCH] stylix: delegate to upstream default architecture list Delegate to the upstream default architecture list without altering the supported architectures. Link: https://github.com/danth/stylix/pull/515 --- flake.lock | 16 +++++++++------- flake.nix | 5 +---- stylix/systems.nix | 6 ------ 3 files changed, 10 insertions(+), 17 deletions(-) delete mode 100644 stylix/systems.nix diff --git a/flake.lock b/flake.lock index 6d8d805..25b73e7 100644 --- a/flake.lock +++ b/flake.lock @@ -237,16 +237,18 @@ } }, "systems": { - "flake": false, "locked": { - "lastModified": 1, - "narHash": "sha256-zklqYResGOhx59bPMTdCzf7qSwNnwP4I/mYLV/C48iI=", - "path": "stylix/systems.nix", - "type": "path" + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" }, "original": { - "path": "stylix/systems.nix", - "type": "path" + "owner": "nix-systems", + "repo": "default", + "type": "github" } } }, diff --git a/flake.nix b/flake.nix index 7ff685d..a2f8587 100644 --- a/flake.nix +++ b/flake.nix @@ -60,10 +60,7 @@ nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # Interface flake systems. - systems = { - flake = false; - url = "path:stylix/systems.nix"; - }; + systems.url = "github:nix-systems/default"; }; outputs = diff --git a/stylix/systems.nix b/stylix/systems.nix deleted file mode 100644 index b49d138..0000000 --- a/stylix/systems.nix +++ /dev/null @@ -1,6 +0,0 @@ -[ - "aarch64-darwin" - "aarch64-linux" - "x86_64-darwin" - "x86_64-linux" -]