Initial commit
This commit is contained in:
11
Config/Config.hs
Normal file
11
Config/Config.hs
Normal 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 ()
|
0
Config/nix/haskell-packages/.keep
Normal file
0
Config/nix/haskell-packages/.keep
Normal file
7
Config/nix/nixpkgs-config.nix
Normal file
7
Config/nix/nixpkgs-config.nix
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user