Move custom packages
This commit is contained in:
parent
386c68813a
commit
23cc6c99a0
7 changed files with 87 additions and 66 deletions
|
@ -3,24 +3,26 @@
|
|||
{
|
||||
imports = [ inputs.devshell.flakeModule ];
|
||||
|
||||
perSystem.devshells.default =
|
||||
{ pkgs, ... }:
|
||||
perSystem =
|
||||
{ pkgs, self', ... }:
|
||||
{
|
||||
packages = with pkgs; [
|
||||
nodePackages.browser-sync
|
||||
devshells.default = {
|
||||
packages = with pkgs; [
|
||||
self'.packages.drafts
|
||||
self'.packages.new-draft
|
||||
self'.packages.publish
|
||||
|
||||
(php83.buildEnv {
|
||||
extraConfig = ''
|
||||
error_reporting = E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED
|
||||
'';
|
||||
})
|
||||
nodePackages.browser-sync
|
||||
|
||||
php83Packages.composer
|
||||
tailwindcss
|
||||
(php83.buildEnv {
|
||||
extraConfig = ''
|
||||
error_reporting = E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED
|
||||
'';
|
||||
})
|
||||
|
||||
(import ../drafts.nix { inherit pkgs; })
|
||||
(import ../new-draft.nix { inherit pkgs; })
|
||||
(import ../publish.nix { inherit pkgs; })
|
||||
];
|
||||
php83Packages.composer
|
||||
tailwindcss
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue