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