Flakes: Difference between revisions
m First paragraph has more information about flakes |
m →Input schema: Fixed broken codeblock formatting at hyprland inputs example |
||
Line 104: | Line 104: | ||
<code>inputs.hyprland.inputs.nixpkgs.follows = "nixpkgs";</code> | <code>inputs.hyprland.inputs.nixpkgs.follows = "nixpkgs";</code> | ||
Using curly brackets({}), we can shorten all of this and put it in a table. The code will look something like this: | Using curly brackets({}), we can shorten all of this and put it in a table. The code will look something like this:<syntaxhighlight lang="nix"> | ||
inputs = { | |||
< | |||
nixpkgs.url = "nixpkgs/<branch name>"; | nixpkgs.url = "nixpkgs/<branch name>"; | ||
hyprland = { | hyprland = { | ||
Line 112: | Line 111: | ||
inputs.nixpkgs.follows = "nixpkgs"; | inputs.nixpkgs.follows = "nixpkgs"; | ||
}; | }; | ||
};</ | }; | ||
</syntaxhighlight> | |||
=== Output schema === | === Output schema === |