summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--flake.lock8
-rw-r--r--flake.nix10
2 files changed, 12 insertions, 6 deletions
diff --git a/flake.lock b/flake.lock
index 84ecccf2..d7f26fcf 100644
--- a/flake.lock
+++ b/flake.lock
@@ -37,16 +37,16 @@
     },
     "nixpkgs": {
       "locked": {
-        "lastModified": 1708807242,
-        "narHash": "sha256-sRTRkhMD4delO/hPxxi+XwLqPn8BuUq6nnj4JqLwOu0=",
+        "lastModified": 1708831307,
+        "narHash": "sha256-0iL/DuGjiUeck1zEaL+aIe2WvA3/cVhp/SlmTcOZXH4=",
         "owner": "NixOS",
         "repo": "nixpkgs",
-        "rev": "73de017ef2d18a04ac4bfd0c02650007ccb31c2a",
+        "rev": "5bf1cadb72ab4e77cb0b700dab76bcdaf88f706b",
         "type": "github"
       },
       "original": {
         "owner": "NixOS",
-        "ref": "nixos-unstable",
+        "ref": "nixos-23.11",
         "repo": "nixpkgs",
         "type": "github"
       }
diff --git a/flake.nix b/flake.nix
index 32620670..15167d04 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,7 +2,7 @@
   description = "Nheko Nightly";
 
   inputs = {
-    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+    nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
     flake-utils.url = "github:numtide/flake-utils";
     mtxclientSrc = {
       url = "github:Nheko-reborn/mtxclient/master";
@@ -87,7 +87,13 @@
           };
         } ;
         devShell = pkgs.mkShell {
-          buildInputs = [ self.packages."${system}".default.buildInputs ];
+          buildInputs = [ 
+            self.packages."${system}".default.buildInputs
+            self.packages."${system}".default.nativeBuildInputs
+            pkgs.lldb
+            pkgs.gdb
+          ];
+
         };
       }
     );