diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-07 18:36:23 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-07 18:37:09 +0530 |
| commit | d7b0739cca80d0af95367e801972d10e3ea859db (patch) | |
| tree | 88fd6fb5250def84d8398059e8cce82c0e2c791d /flake.nix | |
| download | null-browser-d7b0739cca80d0af95367e801972d10e3ea859db.tar.gz null-browser-d7b0739cca80d0af95367e801972d10e3ea859db.zip | |
Ah shit, here we go again
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..7581784 --- /dev/null +++ b/flake.nix @@ -0,0 +1,24 @@ +{ + inputs = { + flake-utils.url = "github:numtide/flake-utils"; + nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; + }; + + outputs = { self, nixpkgs, flake-utils, ... }: + let + shell = { pkgs, ... }: + pkgs.mkShell { + buildInputs = with pkgs; [ + cmake + gnumake + pkgs.qt6.full + clang-tools + ]; + }; + in flake-utils.lib.eachDefaultSystem (system: + let + pkgs = import nixpkgs { inherit system; }; + in { + devShells.default = shell { inherit pkgs system; }; + }); +} |
