diff options
author | sefidel <contact@sefidel.net> | 2024-02-10 18:30:39 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-02-10 18:30:39 +0900 |
commit | 48d9a41ca267664062e872ae3ee3be158e30ebce (patch) | |
tree | 729003991b75dc6b0b8e923b70acaa3df1742812 /nixos/default.nix | |
parent | d81b9852a46818b0c8edbff35d06a3445fa71a23 (diff) | |
download | nixrc-48d9a41ca267664062e872ae3ee3be158e30ebce.tar.gz nixrc-48d9a41ca267664062e872ae3ee3be158e30ebce.zip |
chore(nixos/default): remove cloudflared override
Diffstat (limited to 'nixos/default.nix')
-rw-r--r-- | nixos/default.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nixos/default.nix b/nixos/default.nix index d47f929..b6aa852 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -1,4 +1,4 @@ -{ self, unstable, nixpkgs-crystal, nixpkgs-cloudflared, ... } @ inputs: +{ self, unstable, nixpkgs-crystal, ... } @ inputs: { alpha = self.lib.mkSystem { @@ -31,9 +31,6 @@ # https://github.com/NixOS/nixpkgs/pull/286273 inherit (nixpkgs-crystal.legacyPackages.x86_64-linux) crystal invidious; - # https://github.com/NixOS/nixpkgs/pull/286467 - inherit (nixpkgs-cloudflared.legacyPackages.x86_64-linux) - cloudflared; }) ]; }; |