Browse Source

Add shell flake

main
parent
commit
6029f45c36
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 18
      shells/flake.nix

18
shells/flake.nix

@ -0,0 +1,18 @@
{
description = "Immutable NixOS development shells.";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
};
outputs = inputs @ { self, nixpkgs, ... }:
inputs.flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in
rec {
devShells.default = pkgs.mkShell {
};
}
);
}
Loading…
Cancel
Save