vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / nixops / legacy / nixops.nix
blob795dc2a71825421c5194db1e7a8e6ceadc601981
2   network = {
3     description = "Legacy Network using <nixpkgs> and legacy state.";
4     # NB this is not really what makes it a legacy network; lack of flakes is.
5     storage.legacy = { };
6   };
7   server = { lib, pkgs, ... }: {
8     deployment.targetEnv = "none";
9     imports = [
10       ./base-configuration.nix
11       (lib.modules.importJSON ./server-network.json)
12     ];
13     environment.systemPackages = [ pkgs.hello pkgs.figlet ];
14   };