summaryrefslogtreecommitdiff
path: root/templates/devenv/simple/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/devenv/simple/flake.nix')
-rw-r--r--templates/devenv/simple/flake.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/templates/devenv/simple/flake.nix b/templates/devenv/simple/flake.nix
deleted file mode 100644
index 078b577..0000000
--- a/templates/devenv/simple/flake.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- inputs = {
- devenv.url = "github:cachix/devenv";
- my-nixpkgs.url = "github:qaristote/my-nixpkgs";
- nixpkgs = {};
- flake-parts = {};
- };
-
- nixConfig = {
- extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
- extra-trusted-substituters = "https://devenv.cachix.org";
- };
-
- outputs = inputs:
- inputs.my-nixpkgs.lib.mkDevenv inputs
- # this function has the same arguments flake-parts' perSystem does:
- # config, lib, pkgs, system, etc.
- ({...}: {
- # put your devenv configuration here
- languages.nix.enable = true;
- });
-}