1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-23 16:11:51 +03:00
This commit is contained in:
nrdxp 2021-02-20 19:56:57 +00:00
parent bd1aff7262
commit 2dd2b1e7a6
5 changed files with 19 additions and 3 deletions

2
extern/default.nix vendored
View File

@ -1,6 +1,6 @@
{ inputs }: with inputs;
let
hm-modules = { };
hmModules = { };
in
{
modules = [

8
extern/index.html vendored
View File

@ -170,6 +170,14 @@ to the rest of your NixOS configuration, <a href="https://github.com/divnix/devo
used to extend the arguments passed to all NixOS modules, allowing for
arbitrary values to be passed from flake inputs to the rest of your
configuration.</p>
<p>There is also an <code>hmModules</code> attribute set for pulling home-manager modules in
from the outside world:</p>
<pre><code class="language-nix">{
hmModules = {
inherit (someFlake.hmModules) anHmModule;
};
}
</code></pre>
</main>

View File

@ -326,6 +326,14 @@ to the rest of your NixOS configuration, <a href="https://github.com/divnix/devo
used to extend the arguments passed to all NixOS modules, allowing for
arbitrary values to be passed from flake inputs to the rest of your
configuration.</p>
<p>There is also an <code>hmModules</code> attribute set for pulling home-manager modules in
from the outside world:</p>
<pre><code class="language-nix">{
hmModules = {
inherit (someFlake.hmModules) anHmModule;
};
}
</code></pre>
<h1><a class="header" href="#hosts" id="hosts">Hosts</a></h1>
<p>Nix flakes contain an output called <code>nixosConfigurations</code> declaring an
attribute set of valid NixOS systems. To simplify the management and creation

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long