From 8990710ce9b0b40e911c5ed62383c06de5eb358c Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 5 Apr 2024 14:09:56 +0200 Subject: [PATCH] [nix] add flake template --- nix/home/template/app.nix | 4 ++++ nix/home/template/default.nix | 1 + 2 files changed, 5 insertions(+) create mode 100644 nix/home/template/app.nix create mode 100644 nix/home/template/default.nix diff --git a/nix/home/template/app.nix b/nix/home/template/app.nix new file mode 100644 index 0000000..d207a5f --- /dev/null +++ b/nix/home/template/app.nix @@ -0,0 +1,4 @@ +{ config, pkgs, ... }: +{ + +} diff --git a/nix/home/template/default.nix b/nix/home/template/default.nix new file mode 100644 index 0000000..da2d324 --- /dev/null +++ b/nix/home/template/default.nix @@ -0,0 +1 @@ +{ ... }: { imports = [ ./default.nix ]; }