mirror of
https://gitlab.com/Cian-H/my_blog.git
synced 2025-12-22 14:21:59 +00:00
24 lines
339 B
Nix
24 lines
339 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: let
|
|
pkgs-unstable = import inputs.nixpkgs-unstable {system = pkgs.stdenv.system;};
|
|
in {
|
|
packages =
|
|
(with pkgs; [
|
|
git
|
|
just
|
|
])
|
|
++ (with pkgs-unstable; [
|
|
dart-sass
|
|
hugo
|
|
]);
|
|
|
|
languages.go.enable = true;
|
|
|
|
pre-commit.hooks.shellcheck.enable = true;
|
|
}
|