aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 4644cf7cb8fc0685b98b46f875ec865761178f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
  };

  outputs = { self, nixpkgs, ... }:
    let
      pkgs = import nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; };
    in {
      devShells.x86_64-linux.default = pkgs.mkShell {
        buildInputs = with pkgs; [
          bundler
          python3Minimal
          nodejs_20
        ];
        shellHook = ''
          tmux
          exit
        '';
      };
    };
}