diff --git a/modules/apps.nix b/modules/apps.nix
index 357c6ec..a72b4fe 100644
--- a/modules/apps.nix
+++ b/modules/apps.nix
@@ -48,7 +48,7 @@ in
description = ''
Programs runnable with nix run .#<name>.
'';
- example = lib.literalExample ''
+ example = lib.literalExpression or lib.literalExample ''
{
x86_64-linux.default.program = "''${config.packages.hello}/bin/hello";
}
@@ -79,7 +79,7 @@ in
description = ''
Programs runnable with nix run .#<name>.
'';
- example = lib.literalExample ''
+ example = lib.literalExpression or lib.literalExample ''
{
default.program = "''${config.packages.hello}/bin/hello";
}
diff --git a/modules/devShells.nix b/modules/devShells.nix
index 21a79e5..28e28a7 100644
--- a/modules/devShells.nix
+++ b/modules/devShells.nix
@@ -19,7 +19,7 @@ in
default = { };
description = ''
Per system an attribute set of packages used as shells.
- nix develop .# will run devShells...
+ nix develop .#<name> will run devShells.<system>.<name>.
'';
};
};
@@ -45,8 +45,8 @@ in
type = types.lazyAttrsOf types.package;
default = { };
description = ''
- An attribute set of packages to be built by nix develop .#.
- nix build .# will run devShells..
+ An attribute set of packages to be built by nix develop .#<name>.
+ nix build .#<name> will run devShells.<name>.
'';
};
};
diff --git a/modules/legacyPackages.nix b/modules/legacyPackages.nix
index 1c66b31..b2c9381 100644
--- a/modules/legacyPackages.nix
+++ b/modules/legacyPackages.nix
@@ -18,7 +18,7 @@ in
type = types.lazyAttrsOf (types.lazyAttrsOf types.anything);
default = { };
description = ''
- Per system, an attribute set of anything. This is also used by nix build .#.
+ Per system, an attribute set of anything. This is also used by nix build .#<attrpath>.
'';
};
};
@@ -44,7 +44,7 @@ in
type = types.lazyAttrsOf types.anything;
default = { };
description = ''
- An attribute set of anything. This is also used by nix build .#.
+ An attribute set of anything. This is also used by nix build .#<attrpath>.
'';
};
};
diff --git a/modules/packages.nix b/modules/packages.nix
index d3352fb..1d46f59 100644
--- a/modules/packages.nix
+++ b/modules/packages.nix
@@ -19,7 +19,7 @@ in
default = { };
description = ''
Per system an attribute set of packages.
- nix build .# will build packages...
+ nix build .#<name> will build packages.<system>.<name>.
'';
};
};
@@ -45,8 +45,8 @@ in
type = types.lazyAttrsOf types.package;
default = { };
description = ''
- An attribute set of packages to be built by nix build .#.
- nix build .# will build packages..
+ An attribute set of packages to be built by nix build .#<name>.
+ nix build .#<name> will build packages.<name>.
'';
};
};
diff --git a/modules/perSystem.nix b/modules/perSystem.nix
index b5e2cab..ab781a4 100644
--- a/modules/perSystem.nix
+++ b/modules/perSystem.nix
@@ -21,7 +21,7 @@ in
};
perInput = mkOption {
- description = "Function from system to function from flake to system-specific attributes.";
+ description = "Function from system to function from flake to system-specific attributes.";
type = types.functionTo (types.functionTo (types.lazyAttrsOf types.unspecified));
};