4o1x5.dev/flake.nix

23 lines
440 B
Nix
Raw Permalink Normal View History

2024-04-28 11:42:37 +02:00
{
description = "Developer shell";
inputs = {
2024-07-15 20:55:29 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
2024-04-28 11:42:37 +02:00
};
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells."${system}".default = pkgs.mkShell {
buildInputs = with pkgs; [
hugo
go
];
shellHook = ''
zsh
'';
};
};
}