aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-07 18:36:23 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-07 18:37:09 +0530
commitd7b0739cca80d0af95367e801972d10e3ea859db (patch)
tree88fd6fb5250def84d8398059e8cce82c0e2c791d /flake.nix
downloadnull-browser-d7b0739cca80d0af95367e801972d10e3ea859db.tar.gz
null-browser-d7b0739cca80d0af95367e801972d10e3ea859db.zip
Ah shit, here we go again
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix24
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; };
+ });
+}