-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
82 lines (73 loc) · 2.14 KB
/
flake.nix
File metadata and controls
82 lines (73 loc) · 2.14 KB
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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
puggle-flake.url = "git+https://forgejo.quoll-owl.ts.net/tacohirosystems/puggle?ref=main";
flake-utils.url = "github:numtide/flake-utils";
tacopkgs = {
url = "git+ssh://git@github.com/tacohirosystems/tacopkgs";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
outputs = { self, nixpkgs, puggle-flake, flake-utils, tacopkgs }:
flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-darwin" ] (system:
let
version = "2025-12-13";
pkgs = import nixpkgs { inherit system; };
puggle = puggle-flake.packages.${system}.puggle;
sekun-www = import ./nix/sekun.nix {
inherit pkgs puggle system version;
inherit (tacopkgs.packages.${system}) minhtml;
};
in
{
packages = {
sekun-www = sekun-www;
inherit (tacopkgs.packages.${system}) minhtml;
default = sekun-www;
sekun-www-image = pkgs.dockerTools.streamLayeredImage {
name = "sekun-www";
tag = version;
contents = [ sekun-www pkgs.caddy ];
config = {
Cmd = ["/bin/caddy" "run" "--config" "Caddyfile"];
};
};
sekun-www-image-latest = pkgs.dockerTools.streamLayeredImage {
name = "sekun-www";
tag = "latest";
contents = [ sekun-www pkgs.caddy ];
config = {
Cmd = ["/bin/caddy" "run" "--config" "Caddyfile"];
};
};
};
devShells = {
default = pkgs.mkShell {
buildInputs = with pkgs; [
self.packages.${system}.minhtml
nixpkgs-fmt
puggle
nil
watchexec
git
erdtree
just
caddy
graphicsmagick
libjxl
libavif
libheif
pkg-config
gzip
brotli
zstd
dive
yq
imagemagick
];
};
};
});
}