Commit 93b1a5d
Changed files (4)
modules/flake-parts.nix → modules/flake-parts/default.nix
File renamed without changes
modules/flake-parts/devshell.nix
@@ -0,0 +1,8 @@
+{inputs, ...}: {
+ flake-file.inputs.devshell = {
+ url = "github:numtide/devshell";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+
+ imports = [inputs.devshell.flakeModule or {}];
+}
flake.lock
@@ -15,6 +15,26 @@
"type": "github"
}
},
+ "devshell": {
+ "inputs": {
+ "nixpkgs": [
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1768818222,
+ "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
+ "owner": "numtide",
+ "repo": "devshell",
+ "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
+ "type": "github"
+ },
+ "original": {
+ "owner": "numtide",
+ "repo": "devshell",
+ "type": "github"
+ }
+ },
"flake-compat": {
"locked": {
"lastModified": 1777699697,
@@ -117,6 +137,7 @@
"root": {
"inputs": {
"den": "den",
+ "devshell": "devshell",
"flake-compat": "flake-compat",
"flake-file": "flake-file",
"flake-parts": "flake-parts",
flake.nix
@@ -7,6 +7,10 @@
inputs = {
den.url = "github:denful/den";
+ devshell = {
+ url = "github:numtide/devshell";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
flake-compat.url = "https://git.lix.systems/lix-project/flake-compat/archive/main.tar.gz";
flake-file.url = "github:denful/flake-file";
flake-parts = {