Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions modules/aspects.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@
options.flake.denful = lib.mkOption {
default = { };
type = lib.types.attrsOf lib.types.raw;
internal = true;
visible = false;
};
}
2 changes: 2 additions & 0 deletions nix/ctx-types.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ let
options.into = lib.mkOption {
description = "Context transformations to other context types";
type = intoType;
internal = true;
visible = false;
default = _: { };
apply = normalizeInto;
};
Expand Down
2 changes: 2 additions & 0 deletions nix/nixModule/ctx.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ in
{
options.den.ctx = lib.mkOption {
default = { };
internal = true;
visible = false;
type = lib.types.lazyAttrsOf ctxTreeType;
};
}
1 change: 1 addition & 0 deletions nix/nixModule/lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
{
config.den.lib = den-lib;
options.den.lib = lib.mkOption {
default = { };
internal = true;
visible = false;
type = lib.types.submodule { freeformType = lib.types.lazyAttrsOf lib.types.unspecified; };
Expand Down
6 changes: 6 additions & 0 deletions nix/types.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ let
'';
example = lib.literalExpression "inputs.nixpkgs.lib.nixosSystem";
type = lib.types.raw;
internal = true;
visible = false;
default =
{
nixos = inputs.nixpkgs.lib.nixosSystem;
Expand Down Expand Up @@ -168,6 +170,8 @@ let
example = lib.literalExpression ''inputs.nixpkgs.legacyPackages.''${home.system}'';
type = lib.types.raw;
default = inputs.nixpkgs.legacyPackages.${config.system};
internal = true;
visible = false;
};
instantiate = lib.mkOption {
description = ''
Expand All @@ -183,6 +187,8 @@ let
'';
example = lib.literalExpression "inputs.home-manager.lib.homeManagerConfiguration";
type = lib.types.raw;
internal = true;
visible = false;
default =
{
homeManager = inputs.home-manager.lib.homeManagerConfiguration;
Expand Down
Loading