blob: 93313259ac4139142ea0b3478332cc7750a08f49 (
plain) (
tree)
|
|
{
description = "My Linux development workflow's flake!";
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 ./linux.nix { inherit pkgs; };
}
);
}
|