-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
129 lines (118 loc) · 4.02 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
papermod = { url = "github:itz-Jana/zola-theme-papermod"; flake = false; };
};
outputs = { self, nixpkgs, flake-utils, papermod }:
flake-utils.lib.eachDefaultSystem
(
system:
let
pkgs = import nixpkgs {
inherit system;
};
themeName = (nixpkgs.lib.removeSuffix "\n" (builtins.fromTOML (builtins.readFile "${papermod}/theme.toml")).name);
website = pkgs.stdenv.mkDerivation rec {
name = "jsteuernagel-de-HEAD";
src = ./.;
nativeBuildInputs = [ pkgs.zola ];
configurePhase = ''
mkdir -p "themes/${themeName}"
cp -r ${papermod}/* "themes/${themeName}"
'';
buildPhase = "zola build";
installPhase = "cp -r public $out";
};
nginxPort = "80";
nginxConf = pkgs.writeText "nginx.conf" ''
user nobody nobody;
daemon off;
error_log /dev/stdout info;
pid /dev/null;
events {}
http {
include ${pkgs.nginx}/conf/mime.types;
access_log /dev/stdout;
server {
listen [::]:${nginxPort} ipv6only=on;
index index.html;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_min_length 256;
gzip_types
application/atom+xml
application/geo+json
application/javascript
application/x-javascript
application/json
application/ld+json
application/manifest+json
application/rdf+xml
application/rss+xml
application/xhtml+xml
application/xml
font/eot
font/otf
font/ttf
image/svg+xml
text/css
text/javascript
text/plain
text/xml;
location ~ /\.(?!well-known).* {
deny all;
access_log off;
log_not_found off;
return 404;
}
location / {
root ${website};
}
}
}
'';
dockerImage = pkgs.dockerTools.buildLayeredImage {
name = "jsteuernagel-de";
contents = [ pkgs.dockerTools.fakeNss pkgs.dockerTools.binSh pkgs.coreutils ];
extraCommands = ''
mkdir -p tmp/nginx_client_body
mkdir -p var/log/nginx
'';
config = {
Cmd = [ "${pkgs.nginx}/bin/nginx" "-c" nginxConf ];
ExposedPorts = {
"${nginxPort}/tcp" = { };
};
};
};
upload-script = pkgs.writeShellScriptBin "upload-image" ''
set -eu
OCI_ARCHIVE=$(nix build --no-link --print-out-paths --no-warn-dirty)
DOCKER_REPOSITORY="docker://ghcr.io/itz-jana/jsteuernagel.de"
${pkgs.skopeo}/bin/skopeo --insecure-policy copy --dest-creds="$GITHUB_USER:$GITHUB_TOKEN" "docker-archive:$OCI_ARCHIVE" "$DOCKER_REPOSITORY"
'';
in
{
packages = {
html = website;
docker = dockerImage;
upload-script = upload-script;
};
defaultPackage = dockerImage;
devShells.default = pkgs.mkShell {
buildInputs = [ pkgs.zola ];
shellHook = ''
mkdir -p themes
ln -sn "${papermod}" "themes/${themeName}"
'';
};
}
);
}