Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.

Commit c84fb7d

Browse files
authored
Reduce import sillyness (#30)
1 parent b68d805 commit c84fb7d

File tree

3 files changed

+16
-42
lines changed

3 files changed

+16
-42
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/dist
22
/vendor
33
.sass-cache
4-
.DS_Store
54
/result

flake.lock

Lines changed: 12 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
inputs = {
3+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
34
flake-utils.url = "github:numtide/flake-utils";
45
nix-jekyll-builder.url = "git+https://git.chobble.com/chobble/nix-jekyll-builder";
6+
nix-jekyll-builder.inputs.nixpkgs.follows = "nixpkgs";
7+
nix-jekyll-builder.inputs.flake-utils.follows = "flake-utils";
58
};
69

710
# Regenerate gemset.nix: nix-shell -p bundix --run "bundix -l"
8-
outputs = { self, flake-utils, nix-jekyll-builder }:
11+
outputs = { flake-utils, nix-jekyll-builder, ... }:
912
flake-utils.lib.eachDefaultSystem (system:
1013
let
1114
package = (nix-jekyll-builder.lib.mkJekyllSite{

0 commit comments

Comments
 (0)