nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 1070db6914acb3baa49a471fb97303b21812da64
parent 189bd70fdce4f889b48c95a06b86d488c01b1b84
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Fri,  6 Feb 2026 15:32:26 +0000

Reflect project rename

Diffstat:
Dcommon/taggart.nix | 37-------------------------------------
Acommon/tagliatelle.nix | 37+++++++++++++++++++++++++++++++++++++
Mmachines/ilias.nix | 2+-
3 files changed, 38 insertions(+), 38 deletions(-)

diff --git a/common/taggart.nix b/common/taggart.nix @@ -1,37 +0,0 @@ -{ config, pkgs, username, ... }: - -{ - # Systemd service - systemd.services.taggart = { - description = "Taggart Go Application"; - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - - serviceConfig = { - Type = "simple"; - User = "${username}"; - WorkingDirectory = "/home/${username}/vault/src/taggart"; - ExecStart = "${pkgs.go}/bin/go run ."; - Restart = "on-failure"; - RestartSec = "5s"; - }; - - environment = { - HOME = "/home/${username}"; - GOPATH = "/home/${username}/go"; - }; - - path = with pkgs; [ - ffmpeg - gcc - git - go - yt-dlp - ]; - - }; - - # Open firewall port - networking.firewall.allowedTCPPorts = [ 9816 ]; - -} diff --git a/common/tagliatelle.nix b/common/tagliatelle.nix @@ -0,0 +1,37 @@ +{ config, pkgs, username, ... }: + +{ + # Systemd service + systemd.services.tagliatelle = { + description = "Tagliatelle Go Application"; + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + + serviceConfig = { + Type = "simple"; + User = "${username}"; + WorkingDirectory = "/home/${username}/vault/src/tagliatelle"; + ExecStart = "${pkgs.go}/bin/go run ."; + Restart = "on-failure"; + RestartSec = "5s"; + }; + + environment = { + HOME = "/home/${username}"; + GOPATH = "/home/${username}/go"; + }; + + path = with pkgs; [ + ffmpeg + gcc + git + go + yt-dlp + ]; + + }; + + # Open firewall port + networking.firewall.allowedTCPPorts = [ 9816 ]; + +} diff --git a/machines/ilias.nix b/machines/ilias.nix @@ -20,7 +20,7 @@ let machine = "ilias"; in { ../common/ssh-tunnel.nix ../common/stromboli.nix ../common/syncthing.nix - ../common/taggart.nix + ../common/tagliatelle.nix ../common/user.nix ../common/zram.nix ../scripts/audiobook-cleaner.nix