Adds unstable file for testing.

This commit is contained in:
Aaron Honeycutt 2022-06-11 19:30:47 +00:00
parent ce50b9011e
commit 0e8edcf035

13
unstable.nix Normal file
View file

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