Flakes: Difference between revisions

Sen (talk | contribs)
m First paragraph has more information about flakes
Sen (talk | contribs)
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 = {
<code>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";
   };
   };
};</code>
};
</syntaxhighlight>


=== Output schema ===
=== Output schema ===