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 + ]; +}