blob: 5aa67d311c6703c7fa7f65c7992f8909a89d7b36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
description = "GoProFS";
nixConfig.bash-prompt = "\[gopro-fs\]$ ";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}
|