diff options
author | Marc Coquand <marc@mccd.space> | 2024-01-21 16:46:16 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-01-21 16:46:16 -0600 |
commit | 097b98a24a199c9b1f100696fa2de4b689476a57 (patch) | |
tree | a51c11c6d64b122154f90961d08667d0616b8e4f | |
parent | 043eb28a22affc1421dda3d8b6ca41183ad0ba0c (diff) | |
download | nixos-097b98a24a199c9b1f100696fa2de4b689476a57.tar.gz nixos-097b98a24a199c9b1f100696fa2de4b689476a57.tar.bz2 nixos-097b98a24a199c9b1f100696fa2de4b689476a57.zip |
Install php and reference
-rw-r--r-- | configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix index a6f6f26..e917d29 100644 --- a/configuration.nix +++ b/configuration.nix @@ -27,7 +27,7 @@ services.cron = { enable = true; systemCronJobs = [ - "10 * * * * www-data php -f ${pkgs.freshrss}/app/actualize_script.php > /tmp/FreshRSS.log 2>&1" + "10 * * * * www-data ${pkgs.php}/bin/php -f ${pkgs.freshrss}/app/actualize_script.php > /tmp/FreshRSS.log 2>&1" ]; }; @@ -81,7 +81,7 @@ defaults.email = "marcc@mccd.space"; }; - environment.systemPackages = with pkgs; [ git vim ]; + environment.systemPackages = with pkgs; [ git vim fd php ]; users.users.git = { isNormalUser = true; |