Upload New File

This commit is contained in:
Aaron Honeycutt 2022-08-21 23:14:35 +00:00
parent c4ea1959f7
commit 73e276589a

14
unstable.nix Normal file
View file

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