move disqalculate file to corect owner and group

This commit is contained in:
Noa Aarts 2025-11-15 17:47:00 +01:00
parent a49765bbb1
commit d1b10def28
Signed by: noa
GPG key ID: 1850932741EFF672
3 changed files with 52 additions and 13 deletions

View file

@ -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 = {

View file

@ -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;
} }
) )

View 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/";
};
}