Template:Editing Template: Difference between revisions

From NixOS Wiki
Layer-09 (talk | contribs)
mNo edit summary
Layer-09 (talk | contribs)
mNo edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
<noinclude>
This template provides a guide for structuring new articles.
Usage:
{{ic|<nowiki>{{Editing Template|package_name=your_package_name}}</nowiki>}}
{{Editing Template|package_name=your_package_name}}
</noinclude>
<includeonly>
== Installation ==
== Installation ==
=== Using nix-shell ===
=== Using nix-shell ===
{{#tag:pre|
{{#tag:pre|
nix-shell -p package_name
nix-shell -p {{{package_name}}}
}}
}}
=== System-Wide Installation on NixOS ===
=== System-Wide Installation on NixOS ===
{{#tag:pre|
{{#tag:pre|
environment.systemPackages = [
environment.systemPackages = [
   pkgs.package_name
   pkgs.{{{package_name}}}
];
];
}}
}}
Line 15: Line 21:
sudo nixos-rebuild switch
sudo nixos-rebuild switch
}}
}}
=== User-Specific Installation with Home Manager ===
=== User-Specific Installation with Home Manager ===
{{#tag:pre|
{{#tag:pre|
home.packages = [  
home.packages = [  
   pkgs.package_name  
   pkgs.{{{package_name}}}
];
];
}}
}}
Line 26: Line 31:
home-manager switch
home-manager switch
}}
}}
== Configuration ==
== Configuration ==
{{{configuration|}}}
=== Basic ===
=== Basic ===
{{#tag:pre|
<pre class="mw-editcontent">
programs.package_name = {
programs.{{package_name}} = {
     enable = true;
     enable = true;
};
};
}}
</pre>
 
=== Advanced ===
=== Advanced ===
{{#tag:pre|
<pre class="mw-editcontent">
programs.package_name = {
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? ===
The home manager options are defined in the following Home Manager Options Manual.
The system-wide options are listed on ....
== Troubleshooting ==
== Troubleshooting ==
 
{{{troubleshooting|}}}
== References ==
== References ==
{{{references|}}}
</includeonly>

Latest revision as of 07:50, 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?

Troubleshooting

References