notohh.dev/flake.nix
notohh 4edf79e21f
Some checks failed
notohh.dev / build (push) Failing after 1m16s
init 1.0
2024-01-16 02:03:52 -05:00

30 lines
544 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
git
alejandra
dart-sass
nodejs
elmPackages.elm
elmPackages.elm-land
elmPackages.elm-format
];
};
};
}