Bash: Difference between revisions
Create bash page with information on configuration options |
m →NixOS System Configuration: fix indentation |
||
| (One intermediate revision by one other user not shown) | |||
| Line 13: | Line 13: | ||
{{file|/etc/nixos/configuration.nix|nix| | {{file|/etc/nixos/configuration.nix|nix| | ||
<nowiki> | <nowiki> | ||
programs.bash = { | |||
shellAliases = { | |||
ll = "ls -l"; | |||
rebuild = "sudo nixos-rebuild switch"; | |||
}; | }; | ||
}; | |||
</nowiki> | </nowiki> | ||
}} | }} | ||
| Line 27: | Line 27: | ||
Bash can also be configured by [[Home Manager]]. Module options can be looked up at the [https://home-manager-options.extranix.com/?query=programs.bash&release=master Home Manager Option Search] | Bash can also be configured by [[Home Manager]]. Module options can be looked up at the [https://home-manager-options.extranix.com/?query=programs.bash&release=master Home Manager Option Search] | ||
== See also == | |||
* [[Command Shell]] | |||
[[Category:Shell]] | |||