summaryrefslogtreecommitdiff
path: root/templates/devenv/flake-parts/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/devenv/flake-parts/flake.nix')
-rw-r--r--templates/devenv/flake-parts/flake.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/templates/devenv/flake-parts/flake.nix b/templates/devenv/flake-parts/flake.nix
deleted file mode 100644
index 031a8d6..0000000
--- a/templates/devenv/flake-parts/flake.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- inputs = {
- devenv.url = "github:cachix/devenv";
- my-nixpkgs.url = "github:qaristote/my-nixpkgs";
- nixpkgs = {};
- };
-
- nixConfig = {
- extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
- extra-trusted-substituters = "https://devenv.cachix.org";
- };
-
- outputs = {
- flake-parts,
- my-nixpkgs,
- ...
- } @ inputs:
- flake-parts.lib.mkFlake {inherit inputs;} {
- imports = builtins.attrValues {inherit (my-nixpkgs.flakeModules) personal devenv;};
- perSystem = {...}: {
- devenv.shells.default = {
- ######################## PUT YOUR CONFIG HERE ########################
- languages.nix.enable = true;
- };
- };
- };
-}