move disqalculate file to corect owner and group
This commit is contained in:
parent
a49765bbb1
commit
d1b10def28
3 changed files with 52 additions and 13 deletions
|
|
@ -309,11 +309,11 @@
|
||||||
|
|
||||||
age = {
|
age = {
|
||||||
identityPaths = [ "${config.users.users.noa.home}/.ssh/id_ed25519" ];
|
identityPaths = [ "${config.users.users.noa.home}/.ssh/id_ed25519" ];
|
||||||
secrets = {
|
secrets = lib.mkMerge [
|
||||||
|
{
|
||||||
"secrets/token-flurry".file = ../../secrets/github/flurry.age;
|
"secrets/token-flurry".file = ../../secrets/github/flurry.age;
|
||||||
"secrets/token-anstml".file = ../../secrets/github/anstml.age;
|
"secrets/token-anstml".file = ../../secrets/github/anstml.age;
|
||||||
"secrets/token-nixconf".file = ../../secrets/github/nixconf.age;
|
"secrets/token-nixconf".file = ../../secrets/github/nixconf.age;
|
||||||
"discord/disqalculate".file = ../../secrets/discord/disqalculate.age;
|
|
||||||
"factorio/solrunners".file = ../../secrets/factorio/solrunners.age;
|
"factorio/solrunners".file = ../../secrets/factorio/solrunners.age;
|
||||||
"authentik/env".file = ../../secrets/authentik/env.age;
|
"authentik/env".file = ../../secrets/authentik/env.age;
|
||||||
"rsecrets/radicale" = {
|
"rsecrets/radicale" = {
|
||||||
|
|
@ -321,7 +321,15 @@
|
||||||
owner = "radicale";
|
owner = "radicale";
|
||||||
group = "radicale";
|
group = "radicale";
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"discord/disqalculate".file = {
|
||||||
|
file = ../../secrets/discord/disqalculate.age;
|
||||||
|
owner = "disqalculate";
|
||||||
|
group = "disqalculate";
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
|
||||||
|
|
@ -27,5 +27,6 @@ forAllSystems (
|
||||||
fuzzel-launch = call ./fuzzel-launch.nix;
|
fuzzel-launch = call ./fuzzel-launch.nix;
|
||||||
fuzzel-power = call ./fuzzel-power.nix;
|
fuzzel-power = call ./fuzzel-power.nix;
|
||||||
vvvvvv-ap = call ./vvvvvv-ap;
|
vvvvvv-ap = call ./vvvvvv-ap;
|
||||||
|
stoat-server = call ./stoat-server;
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
30
packages/stoat-server/default.nix
Normal file
30
packages/stoat-server/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
pkgs.rustPlatform.buildRustPackage {
|
||||||
|
name = "stoatchat";
|
||||||
|
version = "0.8.8-1";
|
||||||
|
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "stoatchat";
|
||||||
|
repo = "stoatchat";
|
||||||
|
tag = "20250807-1";
|
||||||
|
hash = "sha256-HrhucXy6NywgH7iPEfR28mwp6qEmCXIGBcKBSEzOCsY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = with pkgs; [
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
|
||||||
|
cargoHash = "sha256-inlB/U97XKjLbX0nPyu/ddLvPiZEET3pOYm6R+tJeSM=";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Open source discord alternative";
|
||||||
|
homepage = "https://stoat.chat/";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue