Rename project

main
Elnu 1 year ago
parent 15e5fea8b2
commit 547e15acd5

@ -1,5 +1,5 @@
{ {
"rust-analyzer.linkedProjects": [ "rust-analyzer.linkedProjects": [
"./helloworld/Cargo.toml", "./discord-tts-bot/Cargo.toml",
] ]
} }

2
Cargo.lock generated

@ -3,5 +3,5 @@
version = 3 version = 3
[[package]] [[package]]
name = "helloworld" name = "discord-tts-bot"
version = "0.1.0" version = "0.1.0"

@ -1,3 +1,3 @@
[workspace] [workspace]
members = ["helloworld"] members = ["discord-tts-bot"]
resolver = "2" resolver = "2"

@ -1,5 +1,5 @@
[package] [package]
name = "helloworld" name = "discord-tts-bot"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

@ -0,0 +1,96 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1681202837,
"narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "cfacdce06f30d2b68473a46042957675eebb3401",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1699099776,
"narHash": "sha256-X09iKJ27mGsGambGfkKzqvw5esP1L/Rf8H3u3fCqIiU=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "85f1ba3e51676fa8cc604a3d863d729026a6b8eb",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1681358109,
"narHash": "sha256-eKyxW4OohHQx9Urxi7TQlFBTDWII+F+x2hklDOQPB50=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "96ba1c52e54e74c3197f4d43026b3f3d92e83ff9",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs",
"rust-overlay": "rust-overlay"
}
},
"rust-overlay": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1699409596,
"narHash": "sha256-L3g1smIol3dGTxkUQOlNShJtZLvjLzvtbaeTRizwZBU=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "58240e1ac627cef3ea30c7732fedfb4f51afd8e7",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "rust-overlay",
"type": "github"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

@ -1,6 +1,6 @@
/* /*
TODO TODO
1. Find and replace "helloworld" with your package name for **ALL FILES IN REPOSITORY** 1. Find and replace "discord-tts-bot" with your package name for **ALL FILES IN REPOSITORY**
2. Add a flake description that describes the workspace on line 27 2. Add a flake description that describes the workspace on line 27
3. Add a package description on line 70 3. Add a package description on line 70
4. (optional) uncomment `nativeBuildInputs` and `buildInputs` on lines 43 and 44 if you need openssl 4. (optional) uncomment `nativeBuildInputs` and `buildInputs` on lines 43 and 44 if you need openssl
@ -13,8 +13,8 @@ TODO
Some utility commands: Some utility commands:
- `nix flake update --commit-lock-file` - `nix flake update --commit-lock-file`
- `nix flake lock update-input <input>` - `nix flake lock update-input <input>`
- `nix build .#helloworld` or `nix build .` - `nix build .#discord-tts-bot` or `nix build .`
- `nix run .#helloworld` or `nix run .` - `nix run .#discord-tts-bot` or `nix run .`
*/ */
{ {
@ -53,14 +53,14 @@ Some utility commands:
cargo-edit cargo-edit
bacon bacon
]; ];
inputsFrom = with self.packages.${system}; [ helloworld ]; inputsFrom = with self.packages.${system}; [ discord-tts-bot ];
}; };
packages.${system} = { packages.${system} = {
default = self.packages.${system}.helloworld; default = self.packages.${system}.discord-tts-bot;
helloworld = pkgs.rustPlatform.buildRustPackage (rustSettings // { discord-tts-bot = pkgs.rustPlatform.buildRustPackage (rustSettings // {
pname = "helloworld"; pname = "discord-tts-bot";
version = "0.1.0"; version = "0.1.0";
buildAndTestSubdir = "helloworld"; buildAndTestSubdir = "discord-tts-bot";
cargoHash = "sha256-+TaGIiKf+Pz2bTABeG8aCZz0/ZTCKl5398+qbas4Nvo="; cargoHash = "sha256-+TaGIiKf+Pz2bTABeG8aCZz0/ZTCKl5398+qbas4Nvo=";
meta = meta // { meta = meta // {
description = ""; description = "";
@ -71,14 +71,14 @@ Some utility commands:
nixosModules.default = { config, ... }: let nixosModules.default = { config, ... }: let
lib = nixpkgs.lib; lib = nixpkgs.lib;
in { in {
options.services.helloworld = { options.services.discord-tts-bot = {
enable = lib.mkEnableOption (lib.mdDoc "helloworld service"); enable = lib.mkEnableOption (lib.mdDoc "discord-tts-bot service");
package = lib.mkOption { package = lib.mkOption {
type = lib.types.package; type = lib.types.package;
default = self.packages.${system}.helloworld; default = self.packages.${system}.discord-tts-bot;
defaultText = "pkgs.helloworld"; defaultText = "pkgs.discord-tts-bot";
description = lib.mdDoc '' description = lib.mdDoc ''
The helloworld package that should be used. The discord-tts-bot package that should be used.
''; '';
}; };
port = lib.mkOption { port = lib.mkOption {
@ -89,16 +89,16 @@ Some utility commands:
''; '';
}; };
}; };
config.systemd.services.helloworld = let config.systemd.services.discord-tts-bot = let
cfg = config.services.helloworld; cfg = config.services.discord-tts-bot;
pkg = self.packages.${system}.helloworld; pkg = self.packages.${system}.discord-tts-bot;
in lib.mkIf cfg.enable { in lib.mkIf cfg.enable {
description = pkg.meta.description; description = pkg.meta.description;
after = [ "network.target" ]; after = [ "network.target" ];
wantedBy = [ "network.target" ]; wantedBy = [ "network.target" ];
serviceConfig = { serviceConfig = {
ExecStart = '' ExecStart = ''
${cfg.package}/bin/helloworld --port ${builtins.toString cfg.port} ${cfg.package}/bin/discord-tts-bot --port ${builtins.toString cfg.port}
''; '';
Restart = "always"; Restart = "always";
DynamicUser = true; DynamicUser = true;

Loading…
Cancel
Save