added nix config files
This commit is contained in:
parent
d3f3025e2d
commit
47f4f8ed7c
|
@ -1,3 +1,4 @@
|
||||||
|
result
|
||||||
dist-newstyle
|
dist-newstyle
|
||||||
.cache
|
.cache
|
||||||
_site
|
_site
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
my personal website, made with [achille](https://acatalepsie.fr/projects/achille).
|
my personal website, made with [achille](https://acatalepsie.fr/projects/achille).
|
||||||
|
|
||||||
|
```
|
||||||
|
nix-shell --attr env release.nix
|
||||||
|
nix-env -if release.nix
|
||||||
|
```
|
||||||
|
|
||||||
## todo
|
## todo
|
||||||
|
|
||||||
- dark theme
|
- dark theme
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
|
@ -1,6 +0,0 @@
|
||||||
packages:
|
|
||||||
./
|
|
||||||
../achille
|
|
||||||
|
|
||||||
package site
|
|
||||||
optimization: True
|
|
|
@ -13,7 +13,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font: 15px Inter, sans-serif;
|
font: 15px Inter, sans-serif, "é";
|
||||||
line-height: 1.54;
|
line-height: 1.54;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
|
|
@ -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 {}
|
|
@ -17,7 +17,7 @@ executable site
|
||||||
, Visual
|
, Visual
|
||||||
, Templates
|
, Templates
|
||||||
, Readings
|
, Readings
|
||||||
build-depends: base >=4.12 && <4.13
|
build-depends: base >= 4.12 && < 5
|
||||||
, filepath
|
, filepath
|
||||||
, achille
|
, achille
|
||||||
, data-default
|
, data-default
|
||||||
|
|
Loading…
Reference in New Issue