Template:Editing Template: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
<noinclude> | <noinclude> | ||
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 35: | Line 33: | ||
== Configuration == | == Configuration == | ||
=== Basic === | === Basic === | ||
<pre class="mw-editcontent"> | |||
programs.{{{package_name}}} = { | programs.{{{package_name}}} = { | ||
enable = true; | enable = true; | ||
}; | }; | ||
</pre> | |||
=== Advanced === | === Advanced === | ||
<pre class="mw-editcontent"> | |||
programs.{{{package_name}}} = { | programs.{{{package_name}}} = { | ||
enable = true; | enable = true; | ||
... | ... | ||
}; | }; | ||
</pre> | |||
== Tips and Tricks == | == Tips and Tricks == | ||
=== Where to see a list of options? === | === Where to see a list of options? === |
Revision as of 07:26, 21 June 2024
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; ... };
Tips and Tricks
Where to see a list of options?
The home manager options are defined in the following Home Manager Options Manual. The system-wide options are listed on ....