mirror of
https://github.com/zoriya/blog.git
synced 2025-12-06 06:26:10 +00:00
8 lines
94 B
Nix
8 lines
94 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
hugo
|
|
go
|
|
];
|
|
}
|