# Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { config, pkgs, lib, ... }: let primaryInterface = config.makefu.server.primary-itf; in { imports = [ ./hw/omo.nix #./hw/tsp.nix ../../2configs/default.nix ../../2configs/headless.nix ../../2configs/support-nixos.nix ../../2configs/nur.nix # x11 forwarding { services.openssh.forwardX11 = true; users.users.makefu.packages = [ pkgs.tinymediamanager ]; } { environment.systemPackages = [ pkgs.youtube-dl2kodi pkgs.youtube-dl]; } ../../2configs/zsh-user.nix ../../2configs/home-manager ../../2configs/home-manager/cli.nix ../../2configs/editor/neovim # ../../2configs/storj/client.nix ../../2configs/backup/state.nix { makefu.backup.server.repo = "/media/cryptX/backup/borg"; } ../../2configs/backup/server.nix ../../2configs/exim-retiolum.nix # ../../2configs/smart-monitor.nix ../../2configs/mail-client.nix ../../2configs/mosh.nix ../../2configs/tools/core.nix ../../2configs/tools/dev.nix ../../2configs/tools/desktop.nix ../../2configs/tools/mobility.nix ../../2configs/tools/consoles.nix #../../2configs/graphite-standalone.nix #../../2configs/share-user-sftp.nix ../../2configs/urlwatch # ../../2configs/legacy_only.nix ../../2configs/share ../../2configs/share/omo.nix ../../2configs/share/gum-client.nix ../../2configs/sync ../../2configs/wireguard/wiregrill.nix #../../2configs/dcpp/airdcpp.nix #{ krebs.airdcpp.dcpp.shares = let # d = path: "/media/cryptX/${path}"; # in { # emu.path = d "emu"; # audiobooks.path = lib.mkForce (d "audiobooks"); # incoming.path = lib.mkForce (d "torrent"); # anime.path = d "anime"; # }; # krebs.airdcpp.dcpp.DownloadDirectory = "/media/cryptX/torrent/dcpp"; #} { # copy config from to /var/lib/sabnzbd/ #services.sabnzbd.enable = true; #systemd.services.sabnzbd.environment.SSL_CERT_FILE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; } # ../../2configs/share/omo-timemachine.nix ../../2configs/tinc/retiolum.nix # statistics # ../../2configs/stats/client.nix # Logging #influx + grafana ../../2configs/stats/server.nix # ../../2configs/stats/nodisk-client.nix # logs to influx ../../2configs/stats/external/aralast.nix ../../2configs/stats/telegraf # ../../2configs/stats/telegraf/europastats.nix ../../2configs/stats/telegraf/hamstats.nix ../../2configs/hw/cdrip.nix # services { services.nginx.enable = true; networking.firewall.allowedTCPPorts = [ 80 8123 ]; } # ../../2configs/syncthing.nix ../../2configs/remote-build/slave.nix # TODO: ../../2configs/virtualisation/docker.nix ../../2configs/bluetooth-mpd.nix ../../2configs/home/jellyfin.nix ../../2configs/home/music.nix ../../2configs/home/photoprism.nix # ../../2configs/home/tonie.nix ../../2configs/home/ps4srv.nix # ../../2configs/home/metube.nix # ../../2configs/home/ham ../../2configs/home/ham/docker.nix ../../2configs/home/zigbee2mqtt { makefu.ps3netsrv = { enable = true; servedir = "/media/cryptX/emu/ps3"; }; users.users.makefu.packages = [ pkgs.pkgrename ]; } { hardware.pulseaudio.systemWide = true; makefu.mpd.musicDirectory = "/media/cryptX/music"; } # security ../../2configs/sshd-totp.nix # ../../2configs/logging/central-logging-client.nix # ../../2configs/torrent.nix { #krebs.rtorrent = { # downloadDir = lib.mkForce "/media/cryptX/torrent"; # extraConfig = '' # upload_rate = 500 # ''; #}; } # ../../2configs/elchos/search.nix # ../../2configs/elchos/log.nix # ../../2configs/elchos/irc-token.nix ## as long as pyload is not in nixpkgs: # docker run -d -v /var/lib/pyload:/opt/pyload/pyload-config -v /media/crypt0/pyload:/opt/pyload/Downloads --name pyload --restart=always -p 8112:8000 -P writl/pyload # Temporary: # ../../2configs/temp/rst-issue.nix ../../2configs/bgt/social-to-irc.nix ]; makefu.full-populate = true; nixpkgs.config.allowUnfree = true; users.users.share.isNormalUser = true; users.groups.share = { gid = pkgs.stockholm.lib.genid "share"; members = [ "makefu" "misa" ]; }; networking.firewall.trustedInterfaces = [ primaryInterface "docker0" ]; users.users.misa = { uid = 9002; name = "misa"; isNormalUser = true; }; zramSwap.enable = true; #krebs.Reaktor.reaktor-shack = { # nickname = "Reaktor|shack"; # workdir = "/var/lib/Reaktor/shack"; # channels = [ "#shackspace" ]; # plugins = with pkgs.ReaktorPlugins; # [ shack-correct # # stockholm-issue # sed-plugin # random-emoji ]; #}; #krebs.Reaktor.reaktor-bgt = { # nickname = "Reaktor|bgt"; # workdir = "/var/lib/Reaktor/bgt"; # channels = [ "#binaergewitter" ]; # plugins = with pkgs.ReaktorPlugins; # [ titlebot # # stockholm-issue # nixos-version # shack-correct # sed-plugin # random-emoji ]; #}; krebs.build.host = config.krebs.hosts.omo; }