notohh.dev/flake.nix
notohh 027fe113c1
treewide: switch back to hugo
i cba learning and maintaining elm
2024-02-22 12:19:04 -05:00

25 lines
428 B
Nix

{
description = "notohh.dev flake";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.${system}.default = pkgs.mkShell {
name = "notohh.dev";
packages = with pkgs; [
nil
alejandra
hugo
];
};
};
}