nix: fmt
This commit is contained in:
parent
de1aea7abd
commit
58787628d2
2 changed files with 39 additions and 23 deletions
|
@ -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" = {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue