summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-11-11 17:27:49 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-11-11 17:27:49 +0100
commitcab79951c38ef1b05dbe38fec857dcb2fffbec82 (patch)
tree7aba08ce58d085bb2af75c55c536daa3a02c1c5a
parent102ed4e7d78dd17ce8ce9e0b928f5123e94d0cfa (diff)
add flake
-rw-r--r--flake.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..9cdb743
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,11 @@
+{
+ description = "Quentin Aristote's personal information.";
+
+ inputs.flake-utils.url = "github:numtide/flake-utils";
+
+ outputs = { self, nixpkgs, flake-utils }:
+ flake-utils.lib.eachDefaultSystem (system:
+ let pkgs = nixpkgs.legacyPackages.${system};
+ in { formatWith = markup: import ./default.nix { inherit markup pkgs; }; });
+}
+