Files
inception-of-things/flake.nix
2025-03-04 19:51:09 +01:00

32 lines
653 B
Nix

{
description = "Inception of Things";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
systems.url = "github:nix-systems/x86_64-linux";
};
outputs =
{ self, nixpkgs, ... }@inputs:
let
inherit (self) outputs;
systems = (import inputs.systems);
forAllSystems = nixpkgs.lib.genAttrs systems;
in
{
devShells = forAllSystems (
system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
default = (import ./shell.nix) { inherit pkgs; };
}
);
};
}