diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2022-11-11 17:27:49 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2022-11-11 17:27:49 +0100 |
| commit | cab79951c38ef1b05dbe38fec857dcb2fffbec82 (patch) | |
| tree | 7aba08ce58d085bb2af75c55c536daa3a02c1c5a /flake.nix | |
| parent | 102ed4e7d78dd17ce8ce9e0b928f5123e94d0cfa (diff) | |
add flake
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 11 |
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; }; }); +} + |
