notohh.dev/flake.nix

30 lines
544 B
Nix
Raw Normal View History

2023-10-04 21:25:51 -04:00
{
description = "notohh.dev flake";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
};
2024-01-16 00:13:42 -05:00
outputs = {nixpkgs, ...}: let
2023-10-04 21:25:51 -04:00
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.${system}.default = pkgs.mkShell {
name = "notohh.dev";
packages = with pkgs; [
nil
git
alejandra
2024-01-16 02:03:52 -05:00
dart-sass
nodejs
2024-01-16 00:13:42 -05:00
elmPackages.elm
elmPackages.elm-land
elmPackages.elm-format
2023-10-04 21:25:51 -04:00
];
};
};
}