From 951770904f14afa57c7ce3670cdb46665504dd18 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 4 Apr 2023 15:30:59 +0000 Subject: [PATCH] flake: add templates --- flake/default.nix | 1 + flake/templates.nix | 4 ++++ templates/default.nix | 3 +++ 3 files changed, 8 insertions(+) create mode 100644 flake/templates.nix create mode 100644 templates/default.nix diff --git a/flake/default.nix b/flake/default.nix index 2def58d..d1b360c 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -27,5 +27,6 @@ flake-parts.lib.mkFlake { inherit inputs; } { ./nixos.nix ./overlays.nix ./packages.nix + ./templates.nix ]; } diff --git a/flake/templates.nix b/flake/templates.nix new file mode 100644 index 0000000..28e534e --- /dev/null +++ b/flake/templates.nix @@ -0,0 +1,4 @@ +{ self, ... }: +{ + flake.templates = import "${self}/templates"; +} diff --git a/templates/default.nix b/templates/default.nix new file mode 100644 index 0000000..679b267 --- /dev/null +++ b/templates/default.nix @@ -0,0 +1,3 @@ +{ + # Add templates +}