test-nixos-pelican #138

Open
silver wants to merge 5 commits from test-nixos-pelican into main
2 changed files with 39 additions and 23 deletions
Showing only changes of commit 58787628d2 - Show all commits

View file

@ -1,5 +1,10 @@
{ inputs, pkgs, lib, config, ... }: {
inputs,
pkgs,
lib,
config,
...
}:
with lib; let with lib; let
cfg = config.modules.pelican-panel; cfg = config.modules.pelican-panel;
dir = "/var/www/pelican"; dir = "/var/www/pelican";
@ -26,8 +31,14 @@ in {
pkgs.php83Extensions.zip pkgs.php83Extensions.zip
pkgs.php83Extensions.intl pkgs.php83Extensions.intl
pkgs.php83Extensions.sqlite3 pkgs.php83Extensions.sqlite3
( import ./pelican-install.nix { inherit pkgs; inherit dir; } ) (import ./pelican-install.nix {
( import ./pelican-update.nix { inherit pkgs; inherit dir; } ) inherit pkgs;
inherit dir;
})
(import ./pelican-update.nix {
inherit pkgs;
inherit dir;
})
]; ];
systemd.timers."pelican-cron" = { systemd.timers."pelican-cron" = {

View file

@ -1,5 +1,10 @@
{ inputs, pkgs, lib, config, ... }: {
inputs,
pkgs,
lib,
config,
...
}:
with lib; let with lib; let
cfg = config.modules.pelican-wings; cfg = config.modules.pelican-wings;
in { in {