diff options
author | lassulus <lassulus@lassul.us> | 2023-01-19 14:12:03 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2023-01-19 14:12:03 +0100 |
commit | c89f76a0bd4f5060ead3d942387c37aff1350ec8 (patch) | |
tree | 6715b9053f54a97a5b72a4dd8a06a865326b5a91 /makefu/1systems/snake/config.nix | |
parent | b51998cfae7b6fe892f9f0f9a2c0ffcfeeded0ba (diff) | |
parent | cb7ebd1c9120eb03ded2334db4c41fe6a0e26b88 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/1systems/snake/config.nix')
-rw-r--r-- | makefu/1systems/snake/config.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/makefu/1systems/snake/config.nix b/makefu/1systems/snake/config.nix new file mode 100644 index 000000000..1c6068e98 --- /dev/null +++ b/makefu/1systems/snake/config.nix @@ -0,0 +1,26 @@ +{ config, lib, pkgs, ... }: +let + primaryInterface = "eth0"; +in { + imports = [ + <stockholm/makefu> + ./hardware-config.nix + <stockholm/makefu/2configs/home-manager> + <stockholm/makefu/2configs/tools/core.nix> + <stockholm/makefu/2configs/binary-cache/nixos.nix> + + <stockholm/makefu/2configs/home/rhasspy> + <stockholm/makefu/2configs/home/rhasspy/led-control.nix> + ]; + krebs = { + enable = true; + tinc.retiolum.enable = true; + build.host = config.krebs.hosts.snake; + }; + # ensure disk usage is limited + services.journald.extraConfig = "Storage=volatile"; + networking.firewall.trustedInterfaces = [ primaryInterface ]; + documentation.info.enable = false; + documentation.man.enable = false; + documentation.nixos.enable = false; +} |