Move files into a sub folder to clean up a bit

This commit is contained in:
Aaron Honeycutt 2022-06-18 08:50:28 -06:00
parent 8d629a40c6
commit 5edcc12af5
6 changed files with 3 additions and 3 deletions

14
nix-configs/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
];
}