From d31ceccc123f5eaf287cd42e2d825f5e2bfeace4 Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Wed, 7 Jun 2023 11:24:20 -0400 Subject: [PATCH] feat: Updated templates to use 23.05 --- templates/default/flake.nix | 2 +- templates/php/flake.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/default/flake.nix b/templates/default/flake.nix index 8d3e63b..02d1699 100644 --- a/templates/default/flake.nix +++ b/templates/default/flake.nix @@ -2,7 +2,7 @@ description = "A very basic flake"; inputs = { - # nixpkgs.url = "github:NixOS/nixpkgs/22.05"; + # nixpkgs.url = "github:NixOS/nixpkgs/23.05"; sbrow.url = "github:sbrow/nix"; diff --git a/templates/php/flake.nix b/templates/php/flake.nix index 80d296f..4cdd9e4 100644 --- a/templates/php/flake.nix +++ b/templates/php/flake.nix @@ -3,7 +3,7 @@ inputs = { flake-utils.url = "github:numtide/flake-utils"; - nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; + # nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; }; outputs = { self, flake-utils, nixpkgs }: flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: @@ -17,8 +17,8 @@ packages = with pkgs; [ caddy foreman - php80 - php80Packages.composer + php + phpPackages.composer ]; }; });