From 0e8edcf035b11d0e40ee3e77db5628d9749e28f9 Mon Sep 17 00:00:00 2001
From: Aaron  Honeycutt <aaronhoneycutt@protonmail.com>
Date: Sat, 11 Jun 2022 19:30:47 +0000
Subject: [PATCH] Adds unstable file for testing.

---
 unstable.nix | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 unstable.nix

diff --git a/unstable.nix b/unstable.nix
new file mode 100644
index 0000000..669233f
--- /dev/null
+++ b/unstable.nix
@@ -0,0 +1,13 @@
+{ config, pkgs, ...}:
+
+let
+  unstable = import
+    (builtins.fetchTarball https://github.com/nixos/nixpkgs/tarball/master)
+    # reuse the current configuration
+    { config = config.nixpkgs.config; };
+in
+{
+  environment.systemPackages = with pkgs; [
+    unstable.protonvpn-cli
+  ];
+}