mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-24 15:01:56 +03:00
25 lines
408 B
Nix
25 lines
408 B
Nix
|
{
|
||
|
self,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
perSystem = {
|
||
|
config,
|
||
|
self',
|
||
|
inputs',
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
render.inputs = {
|
||
|
core = {
|
||
|
title = "core";
|
||
|
flake.module = self.modules.dream2nix.core;
|
||
|
flake.outPath = self;
|
||
|
attributePath = ["module"];
|
||
|
intro = "intro";
|
||
|
baseUrl = "https://github.com/nix-community/dream2nix/blob/master";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|