Skip to content

Commit

Permalink
add missing fields on projects (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
fricklerhandwerk authored Nov 29, 2024
1 parent 8b2be5c commit f7fe32a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
12 changes: 7 additions & 5 deletions projects/Aerogramme/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{pkgs, ...}: {
packages = {inherit (pkgs) aerogramme;};
# https://aerogramme.deuxfleurs.fr/documentation/cookbook/config/
# https://aerogramme.deuxfleurs.fr/documentation/cookbook/service-manager/
nixos.services = null;
nixos.tests = null;
nixos.examples = null;
nixos = {
# https://aerogramme.deuxfleurs.fr/documentation/cookbook/config/
# https://aerogramme.deuxfleurs.fr/documentation/cookbook/service-manager/
modules.services = null;
tests = null;
examples = null;
};
}
10 changes: 6 additions & 4 deletions projects/CNSPRCY/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
packages = {
inherit (pkgs) cnsprcy;
};
# https://git.sr.ht/~xaos/cnsprcy/tree/master/item/src/config.rs
nixos.services = null;
nixos.tests = null;
nixos.examples = null;
nixos = {
# https://git.sr.ht/~xaos/cnsprcy/tree/master/item/src/config.rs
modules.services = null;
tests = null;
examples = null;
};
}
6 changes: 5 additions & 1 deletion projects/Flarum/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
...
}: {
packages = {inherit (pkgs) flarum;};
nixos.modules.services.flarum = "${sources.inputs.nixpkgs}/nixos/modules/services/web-apps/flarum.nix";
nixos = {
modules.services.flarum = "${sources.inputs.nixpkgs}/nixos/modules/services/web-apps/flarum.nix";
tests = null;
examples = null;
};
}
10 changes: 6 additions & 4 deletions projects/Omnom/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{pkgs, ...}: {
packages = {inherit (pkgs) omnom;};
# https://github.com/asciimoo/omnom/blob/master/config/config.go
nixos.services = null;
nixos.tests = null;
nixos.examples = null;
nixos = {
# https://github.com/asciimoo/omnom/blob/master/config/config.go
modules.services = null;
tests = null;
examples = null;
};
}

0 comments on commit f7fe32a

Please sign in to comment.