summaryrefslogtreecommitdiff
path: root/templates/full/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/full/flake.nix')
-rw-r--r--templates/full/flake.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/templates/full/flake.nix b/templates/full/flake.nix
deleted file mode 100644
index b35fa45..0000000
--- a/templates/full/flake.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- description = "";
-
- inputs = {
- nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
-
- flake-parts = {
- url = "github:hercules-ci/flake-parts";
- inputs.nixpkgs-lib.follows = "nixpkgs";
- };
-
- flake-compat = {
- url = "github:edolstra/flake-compat";
- flake = false;
- };
- };
-
- outputs =
- inputs:
- inputs.flake-parts.lib.mkFlake { inherit inputs; } {
- imports = [ ./nix ];
-
- systems = [
- "x86_64-linux"
- "aarch64-linux"
- "x86_64-darwin"
- "aarch64-darwin"
- ];
- };
-}