diff options
author | lassulus <lassulus@lassul.us> | 2017-07-16 12:05:35 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-07-16 12:05:35 +0200 |
commit | cd7c0971ccc9023f63feb75d4abe514fdc03a079 (patch) | |
tree | 704c47afe8cd43a36f36f251cd53b340ec5ec4da /makefu/1systems/pnp/config.nix | |
parent | b91a4c4b0f0958cdc5e7c0d60523326083f275d4 (diff) | |
parent | 0e0ad14c373a038e6d347017f5efe172c7409793 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/1systems/pnp/config.nix')
-rw-r--r-- | makefu/1systems/pnp/config.nix | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/makefu/1systems/pnp/config.nix b/makefu/1systems/pnp/config.nix new file mode 100644 index 000000000..cc6326f19 --- /dev/null +++ b/makefu/1systems/pnp/config.nix @@ -0,0 +1,50 @@ +# Usage: +# NIX_PATH=secrets=/home/makefu/secrets/wry:nixpkgs=/var/src/nixpkgs nix-build -A users.makefu.pnp.config.system.build.vm +# result/bin/run-pnp-vm -virtfs local,path=/home/makefu/secrets/pnp,security_model=none,mount_tag=secrets +{ config, pkgs, ... }: + +{ + imports = + [ + <stockholm/makefu> + <stockholm/makefu/2configs/headless.nix> + ../../krebs/3modules/Reaktor.nix + + # these will be overwritten by qemu-vm.nix but will be used if the system + # is directly deployed + <nixpkgs/nixos/modules/profiles/qemu-guest.nix> + <stockholm/makefu/2configs/fs/vm-single-partition.nix> + + <stockholm/makefu/2configs/tinc/retiolum.nix> + + # config.system.build.vm + (toString <nixpkgs/nixos/modules/virtualisation/qemu-vm.nix>) + ]; + + virtualisation.graphics = false; + # also export secrets, see Usage above + fileSystems = pkgs.lib.mkVMOverride { + "${builtins.toString <secrets>}" = + { device = "secrets"; + fsType = "9p"; + options = "trans=virtio,version=9p2000.L,cache=loose"; + neededForBoot = true; + }; + }; + + krebs.Reaktor.debug = { + debug = true; + extraEnviron = { + REAKTOR_HOST = "ni.r"; + }; + plugins = with pkgs.ReaktorPlugins; [ stockholm-issue nixos-version sed-plugin ]; + channels = [ "#retiolum" ]; + }; + + krebs.build.host = config.krebs.hosts.pnp; + + networking.firewall.allowedTCPPorts = [ + 25 + ]; + +} |