initial publish
This commit is contained in:
parent
fe383f9333
commit
158d021613
49 changed files with 1796 additions and 26 deletions
15
shell.nix
15
shell.nix
|
|
@ -1,7 +1,20 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
let
|
||||
nixpkgs = builtins.fetchTarball "https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz";
|
||||
pkgs = import nixpkgs { };
|
||||
hugo-theme = builtins.fetchTarball {
|
||||
url = "https://github.com/panr/hugo-theme-terminal/archive/refs/tags/v4.2.3.tar.gz";
|
||||
name = "hugo-theme-terminal";
|
||||
sha256 = "10n1frbm1qvwyq5gz7hfdz4aapkzbamgpbwk1941ajm5axbb53hm";
|
||||
};
|
||||
in
|
||||
pkgs.mkShellNoCC {
|
||||
packages = [
|
||||
pkgs.hugo
|
||||
pkgs.just
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
mkdir -p themes
|
||||
ln -snf "${hugo-theme}" themes/default
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue