mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 07:57:57 +00:00
7 lines
205 B
Nix
7 lines
205 B
Nix
|
{
|
||
|
description = "The flake for this project.";
|
||
|
outputs = inputs@{ self, nixpkgs, ... }: {
|
||
|
devShell.x86_64-linux = import ./shell.nix { pkgs = import nixpkgs { system = "x86_64-linux"; }; };
|
||
|
};
|
||
|
}
|