deadnix/statix
This commit is contained in:
parent
ae78cb7026
commit
78eda8579b
4 changed files with 5 additions and 5 deletions
|
@ -29,7 +29,7 @@ let
|
|||
./ides.nix
|
||||
# service config and build params
|
||||
(
|
||||
{ ... }:
|
||||
_:
|
||||
{
|
||||
inherit services;
|
||||
_buildIdes.shellFn = shell;
|
||||
|
|
2
docs.nix
2
docs.nix
|
@ -1,5 +1,5 @@
|
|||
with import <nixpkgs> {};
|
||||
{}: let
|
||||
_: let
|
||||
eval = lib.evalModules {
|
||||
specialArgs = {inherit pkgs;};
|
||||
modules = [./ides.nix ./modules];
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
outputs =
|
||||
{ ... }:
|
||||
_:
|
||||
{
|
||||
lib = import ./default.nix;
|
||||
templates.default = {
|
||||
|
|
4
ides.nix
4
ides.nix
|
@ -220,7 +220,7 @@
|
|||
in
|
||||
foldlAttrs
|
||||
(
|
||||
acc: name: svc:
|
||||
acc: _: svc:
|
||||
let
|
||||
pair = mkWorks svc;
|
||||
in
|
||||
|
@ -247,7 +247,7 @@
|
|||
|
||||
final =
|
||||
let
|
||||
shellArgs = config._buildIdes.shellArgs;
|
||||
inherit (config._buildIdes) shellArgs;
|
||||
in
|
||||
shellArgs
|
||||
// {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue