added nix config files

This commit is contained in:
flupe 2020-09-27 21:55:34 +02:00
parent d3f3025e2d
commit 47f4f8ed7c
7 changed files with 41 additions and 8 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
result
dist-newstyle
.cache
_site

View File

@ -1,5 +1,10 @@
my personal website, made with [achille](https://acatalepsie.fr/projects/achille).
```
nix-shell --attr env release.nix
nix-env -if release.nix
```
## todo
- dark theme

17
acatalepsie.nix Normal file
View File

@ -0,0 +1,17 @@
{ mkDerivation, achille, aeson, base, binary, bytestring
, containers, data-default, feed, filepath, lucid, pandoc
, pandoc-types, sort, stdenv, text, time, yaml
}:
mkDerivation {
pname = "site";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
achille aeson base binary bytestring containers data-default feed
filepath lucid pandoc pandoc-types sort text time yaml
];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}

View File

@ -1,6 +0,0 @@
packages:
./
../achille
package site
optimization: True

View File

@ -13,7 +13,7 @@
}
body {
font: 15px Inter, sans-serif;
font: 15px Inter, sans-serif, "é";
line-height: 1.54;
margin: 0;
height: 100vh;

16
release.nix Normal file
View File

@ -0,0 +1,16 @@
let
compiler = "ghc884";
rev = "b78e08e981a9ad31036fc6c6fb880c1315b4ebea";
overlay = _: pkgs: {
haskellPackages = pkgs.haskellPackages.override {
overrides = self: super: rec {
achille = self.callPackage ../achille/achille.nix {};
};
};
};
nixpkgs =
import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
}) { overlays = [ overlay ] ; };
in nixpkgs.haskellPackages.callPackage ./acatalepsie.nix {}

View File

@ -17,7 +17,7 @@ executable site
, Visual
, Templates
, Readings
build-depends: base >=4.12 && <4.13
build-depends: base >= 4.12 && < 5
, filepath
, achille
, data-default