From 6d720f252426ab919dce364a8801873e54be2da1 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Thu, 1 Dec 2022 16:58:25 -0500 Subject: [PATCH] Remove unused --- flake.nix | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/flake.nix b/flake.nix index 7868964..0b5a41e 100644 --- a/flake.nix +++ b/flake.nix @@ -106,39 +106,6 @@ ./systems/hetzner/ax41.nix ./nixos/server/harden.nix ]; - - # For downloading stuff off internet in VPN. - # - # This is run in qemu only, which is useful to keep the host machine - # directly connected to the network (for acccess from outside). - # - # > nixos-shell --flake github:srid/nixos-config#corsair - corsair = pkgs.lib.makeOverridable nixpkgs.lib.nixosSystem { - inherit system pkgs; - specialArgs = { inherit system inputs; }; - modules = [ - inputs.nixos-shell.nixosModules.nixos-shell - { - virtualisation = { - memorySize = 8 * 1024; - cores = 2; - diskSize = 20 * 1024; - }; - environment.systemPackages = with pkgs; [ - protonvpn-cli - aria2 - ]; - nixos-shell.mounts = { - mountHome = false; - mountNixProfile = false; - extraMounts."/Downloads" = { - target = "/home/${userName}/Downloads"; - cache = "none"; - }; - }; - } - ]; - }; }; # Configurations for macOS systems (using nix-darwin)