2023-04-29 23:29:05 +02:00
|
|
|
{ config, pkgs, lib, ... }: {
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
|
2024-03-03 10:52:46 +01:00
|
|
|
# todo : remove
|
|
|
|
../../system/all
|
|
|
|
|
2023-07-01 00:20:03 +02:00
|
|
|
../../components
|
2024-03-03 10:52:46 +01:00
|
|
|
../../modules
|
2023-07-01 00:20:03 +02:00
|
|
|
|
2024-03-02 21:19:12 +01:00
|
|
|
./hardware-configuration
|
|
|
|
|
2023-04-29 23:29:05 +02:00
|
|
|
./packages.nix
|
|
|
|
|
2023-05-12 11:17:58 +02:00
|
|
|
./network-wireguard.nix
|
2023-05-05 22:33:05 +02:00
|
|
|
./network-tinc.nix
|
2023-10-20 08:46:57 +02:00
|
|
|
./network-tinc-retiolum.nix # make sure no service is open for this vpn!
|
2023-05-05 22:33:05 +02:00
|
|
|
|
|
|
|
./hass.nix
|
|
|
|
./hass-zigbee2mqtt.nix
|
|
|
|
./hass-mqtt.nix
|
2023-06-01 08:21:55 +02:00
|
|
|
#./hass-wifi.nix
|
2023-05-05 22:33:05 +02:00
|
|
|
|
|
|
|
#./mail-fetcher.nix
|
2023-04-29 23:29:05 +02:00
|
|
|
|
|
|
|
#./borg.nix
|
2023-11-18 12:51:14 +01:00
|
|
|
./taskwarrior-autotag.nix
|
2023-05-04 20:59:26 +02:00
|
|
|
|
2023-05-05 22:33:05 +02:00
|
|
|
./media-share.nix
|
2023-05-28 22:52:03 +02:00
|
|
|
./media-audiobookshelf.nix
|
2023-05-05 22:33:05 +02:00
|
|
|
./media-jellyfin.nix
|
2023-08-02 06:01:22 +02:00
|
|
|
./media-youtube.nix
|
2023-08-03 11:50:39 +02:00
|
|
|
./media-castget.nix
|
2023-10-20 08:01:09 +02:00
|
|
|
./media-curl.nix
|
2024-04-17 10:00:17 +02:00
|
|
|
./media-syncthing.nix
|
2023-05-04 20:59:26 +02:00
|
|
|
|
2023-04-29 23:29:05 +02:00
|
|
|
# logging
|
|
|
|
./grafana.nix
|
2024-05-14 20:02:37 +02:00
|
|
|
|
|
|
|
./telemetry/telegraf-smart.nix
|
2024-05-15 11:59:24 +02:00
|
|
|
./telemetry/telegraf.nix
|
|
|
|
#./telemetry/opentelemetry-hass.nix
|
|
|
|
./telemetry/prometheus.nix
|
2024-05-15 14:39:21 +02:00
|
|
|
./telemetry/loki.nix
|
2023-04-29 23:29:05 +02:00
|
|
|
|
|
|
|
#./home-display.nix
|
|
|
|
|
2024-05-11 00:20:55 +02:00
|
|
|
./sync-rbackup.nix
|
2023-05-04 10:12:52 +02:00
|
|
|
./sync-torrent.nix
|
2023-05-04 19:35:15 +02:00
|
|
|
./sync-script.nix
|
2024-05-11 00:20:55 +02:00
|
|
|
./sync-syncoid.nix
|
2023-05-01 21:36:46 +02:00
|
|
|
|
2023-10-05 16:30:34 +02:00
|
|
|
./services-s3.nix
|
2024-05-05 14:12:24 +02:00
|
|
|
./services-vault.nix
|
2024-05-08 22:07:30 +02:00
|
|
|
./services-forgejo.nix
|
2023-10-05 16:30:34 +02:00
|
|
|
|
2023-06-01 08:21:55 +02:00
|
|
|
#./kiosk.nix
|
2023-05-15 18:35:35 +02:00
|
|
|
./trilium.nix
|
2023-12-23 00:11:26 +01:00
|
|
|
./atuin.nix
|
2023-05-12 23:47:19 +02:00
|
|
|
|
2023-06-09 01:24:53 +02:00
|
|
|
./cache.nix
|
|
|
|
|
2023-12-23 00:11:26 +01:00
|
|
|
|
2024-01-14 21:03:18 +01:00
|
|
|
./docker-registry.nix
|
|
|
|
|
2024-03-04 19:05:30 +01:00
|
|
|
./paperless.nix
|
|
|
|
|
2023-04-29 23:29:05 +02:00
|
|
|
];
|
|
|
|
|
2023-07-01 00:20:03 +02:00
|
|
|
components.gui.enable = false;
|
2023-08-25 11:33:25 +02:00
|
|
|
components.mainUser.enable = true;
|
2023-11-08 09:26:34 +01:00
|
|
|
components.media.tts-server.enable = false;
|
2023-06-01 11:38:39 +02:00
|
|
|
components.network.enable = true;
|
|
|
|
components.network.wifi.enable = false;
|
2023-08-25 11:33:25 +02:00
|
|
|
components.terminal.enable = true;
|
2023-04-29 23:29:05 +02:00
|
|
|
|
2024-05-15 11:59:24 +02:00
|
|
|
components.monitor.enable = true;
|
|
|
|
networking.firewall.interfaces.wg0.allowedTCPPorts = [ 4317 ];
|
|
|
|
networking.firewall.interfaces.wg0.allowedUDPPorts = [ 4317 ];
|
|
|
|
components.monitor.opentelemetry.receiver.endpoint = "0.0.0.0:4317";
|
2023-06-01 14:02:57 +02:00
|
|
|
|
2024-05-15 11:59:24 +02:00
|
|
|
services.printing.enable = false;
|
2023-04-29 23:29:05 +02:00
|
|
|
|
2023-05-05 09:49:58 +02:00
|
|
|
#virtualisation.containers.storage.settings = {
|
|
|
|
# # fixes: Error: 'overlay' is not supported over zfs, a mount_program is required: backing file system is unsupported for this graph driver
|
|
|
|
# storage.options.mount_program = "${pkgs.fuse-overlayfs}/bin/fuse-overlayfs";
|
|
|
|
#};
|
|
|
|
virtualisation.podman.extraPackages = [ pkgs.zfs ]; # make sure /var/lib/containers/storage is a zfs dataset
|
|
|
|
|
2023-04-29 23:29:05 +02:00
|
|
|
sops.defaultSopsFile = ../../secrets/chungus.yaml;
|
|
|
|
|
|
|
|
networking.hostName = "chungus";
|
|
|
|
|
2023-11-20 09:49:34 +01:00
|
|
|
hardware.opengl = {
|
|
|
|
enable = true;
|
|
|
|
extraPackages = with pkgs; [
|
|
|
|
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
|
|
|
vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
|
|
|
|
vaapiVdpau
|
|
|
|
libvdpau-va-gl
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-04-29 23:29:05 +02:00
|
|
|
# just enable lan
|
|
|
|
#networking.dhcpcd.allowInterfaces = [ "enp0s25" ];
|
|
|
|
|
|
|
|
# nix-shell -p speedtest_cli --run speedtest
|
|
|
|
#configuration.fireqos = {
|
|
|
|
# enable = false;
|
|
|
|
# interface = "enp0s25";
|
|
|
|
# input = 200000;
|
|
|
|
# output = 2000;
|
|
|
|
# balance = false;
|
|
|
|
#};
|
|
|
|
|
2023-12-23 00:11:26 +01:00
|
|
|
system.stateVersion = "23.11";
|
2023-04-29 23:29:05 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|