mirror of
https://github.com/sbrow/nix.git
synced 2026-02-27 21:31:45 -05:00
27 lines
612 B
Nix
27 lines
612 B
Nix
{
|
|
description = "A very basic flake";
|
|
|
|
inputs = {
|
|
# nixpkgs.url = "github:NixOS/nixpkgs/23.05";
|
|
|
|
sbrow.url = "github:sbrow/nix";
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, flake-utils, nixpkgs, sbrow }:
|
|
flake-utils.lib.eachSystem flake-utils.lib.allSystems
|
|
(system:
|
|
let pkgs = nixpkgs.legacyPackages.${system}; in
|
|
{
|
|
formatter = pkgs.nixpkgs-fmt;
|
|
|
|
devShells.default = pkgs.mkShell
|
|
{
|
|
buildInputs = with pkgs; [
|
|
# Your packages here
|
|
];
|
|
};
|
|
});
|
|
}
|