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/tsp | |
parent | b91a4c4b0f0958cdc5e7c0d60523326083f275d4 (diff) | |
parent | 0e0ad14c373a038e6d347017f5efe172c7409793 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/1systems/tsp')
-rw-r--r-- | makefu/1systems/tsp/config.nix | 29 | ||||
-rw-r--r-- | makefu/1systems/tsp/source.nix | 3 |
2 files changed, 32 insertions, 0 deletions
diff --git a/makefu/1systems/tsp/config.nix b/makefu/1systems/tsp/config.nix new file mode 100644 index 000000000..7169638d4 --- /dev/null +++ b/makefu/1systems/tsp/config.nix @@ -0,0 +1,29 @@ +# +# +# +{ config, pkgs, ... }: + +{ + imports = + [ # Include the results of the hardware scan. + <stockholm/makefu> + <stockholm/makefu/2configs/gui/base.nix> + <stockholm/makefu/2configs/fs/sda-crypto-root.nix> + # hardware specifics are in here + <stockholm/makefu/2configs/hw/tp-x200.nix #< imports tp-x2x0.nix> + + <stockholm/makefu/2configs/disable_v6.nix> + <stockholm/makefu/2configs/rad1o.nix> + + <stockholm/makefu/2configs/zsh-user.nix> + <stockholm/makefu/2configs/exim-retiolum.nix> + <stockholm/makefu/2configs/tinc/retiolum.nix> + ]; + # not working in vm + krebs.build.host = config.krebs.hosts.tsp; + + networking.firewall.allowedTCPPorts = [ + 25 + ]; + +} diff --git a/makefu/1systems/tsp/source.nix b/makefu/1systems/tsp/source.nix new file mode 100644 index 000000000..79f6a435d --- /dev/null +++ b/makefu/1systems/tsp/source.nix @@ -0,0 +1,3 @@ +import <stockholm/makefu/source.nix> { + name="tsp"; +} |