aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 36f03b94f8ce6216a1aa4375811416b93d8e5411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  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; [
          clang.cc
          lld
          nasm
          cmake
          ninja

          grub2
          xorriso

          qemu_kvm
          clang-tools
          ccls
        ];
      };
    };
}