From 73e276589a78d572838e88683caa2e8174762c22 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sun, 21 Aug 2022 23:14:35 +0000 Subject: [PATCH] Upload New File --- unstable.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 unstable.nix diff --git a/unstable.nix b/unstable.nix new file mode 100644 index 0000000..c0b3f7b --- /dev/null +++ b/unstable.nix @@ -0,0 +1,14 @@ +{ 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 + unstable.protonvpn-gui + ]; +}