mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 02:54:03 -06:00
13 lines
285 B
Nix
13 lines
285 B
Nix
{ 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
|
|
];
|
|
}
|