Initial commit

This commit is contained in:
2024-02-27 22:29:41 +01:00
commit bd4fe8fc62
34 changed files with 1644 additions and 0 deletions

11
Config/Config.hs Normal file
View File

@ -0,0 +1,11 @@
module Config where
import IHP.Prelude
import IHP.Environment
import IHP.FrameworkConfig
config :: ConfigBuilder
config = do
-- See https://ihp.digitallyinduced.com/Guide/config.html
-- for what you can do here
pure ()

View File

View File

@ -0,0 +1,7 @@
# See https://ihp.digitallyinduced.com/Guide/package-management.html
{ ihp, additionalNixpkgsOptions, ... }:
import "${toString ihp}/NixSupport/make-nixpkgs-from-options.nix" {
ihp = ihp;
haskellPackagesDir = ./haskell-packages/.;
additionalNixpkgsOptions = additionalNixpkgsOptions;
}