about summary refs log tree commit diff
path: root/flake.nix
blob: 93313259ac4139142ea0b3478332cc7750a08f49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  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; };
        }
      );

}