tdpeuter/flake.nix

27 lines
520 B
Nix
Raw Normal View History

2023-07-30 15:25:00 +02:00
{
description = "Portfolio";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
nodejs
nodePackages.live-server
2024-03-22 16:39:26 +01:00
# An IDE of your choice
# jetbrains.webstorm
];
2023-07-30 15:25:00 +02:00
};
}
);
}