Template:Editing Template: Difference between revisions
Appearance
mNo edit summary |
No edit summary |
||
| (5 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
<noinclude> | <noinclude>{{delete|reason=Unused.}}{{undocumented}} | ||
This template provides a guide for structuring new articles. | This template provides a guide for structuring new articles. | ||
Usage: | Usage: | ||
{{ic|<nowiki>{{Editing Template|package_name=your_package_name}}</nowiki>}} | {{ic|<nowiki>{{Editing Template|package_name=your_package_name}}</nowiki>}} | ||
{{Editing Template|package_name=your_package_name}} | {{Editing Template|package_name=your_package_name}} | ||
</noinclude> | </noinclude> | ||
<includeonly> | <includeonly> | ||
| Line 34: | Line 32: | ||
}} | }} | ||
== Configuration == | == Configuration == | ||
{{{configuration|}}} | |||
=== Basic === | === Basic === | ||
<pre class="mw-editcontent"> | |||
programs. | programs.{{package_name}} = { | ||
enable = true; | enable = true; | ||
}; | }; | ||
</pre> | |||
=== Advanced === | === Advanced === | ||
<pre class="mw-editcontent"> | |||
programs. | programs.{{package_name}} = { | ||
enable = true; | enable = true; | ||
... | ... | ||
}; | }; | ||
</pre> | |||
== Tips and Tricks == | == Tips and Tricks == | ||
{{{tips_and_tricks|}}} | |||
=== Where to see a list of options? === | === Where to see a list of options? === | ||
== Troubleshooting == | == Troubleshooting == | ||
{{{troubleshooting|}}} | |||
== References == | == References == | ||
{{{references|}}} | |||
</includeonly> | </includeonly> | ||
Latest revision as of 22:13, 7 June 2025
✖︎︎
This article is a deletion candidate. Unused. Further information may be found on the related discussion page.
{{?}}︎
Undocumented template. This template has no documentation, or its documentation is in a non-standard format. Please provide documentation about this template using the
{{documentation}} helper template. Doing so will help other editors use your template, as reading template code can be unwieldy and time-consuming.This template provides a guide for structuring new articles.
Usage:
{{Editing Template|package_name=your_package_name}}
Installation
Using nix-shell
nix-shell -p your_package_name
System-Wide Installation on NixOS
environment.systemPackages = [ pkgs.your_package_name ];
After modifying your configuration, apply the changes by running:
sudo nixos-rebuild switch
User-Specific Installation with Home Manager
home.packages = [ pkgs.your_package_name ];
After updating your configuration, apply the changes by running:
home-manager switch
Configuration
Basic
programs.{{package_name}} = {
enable = true;
};
Advanced
programs.{{package_name}} = {
enable = true;
...
};