diff options
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"; +} |