pub-solar-os/doc/concepts/overrides.md

40 lines
1.2 KiB
Markdown
Raw Normal View History

2021-02-14 02:38:20 +00:00
# Overrides
Each NixOS host follows one channel. But many times it is useful to get packages
or modules from different channels.
2021-02-14 02:38:20 +00:00
This is what the overrides are for. You can make use of the `overrides.nix` to
override specific packages to be pulled from other channels. Any overlay may get
`channels` as their first argument.
2021-02-14 02:38:20 +00:00
## Example
### Packages
The override packages are defined as a regular overlay with an extra arguement
`channels`. This refers to all channels defined in `flake.nix`.
2021-02-14 02:38:20 +00:00
Pulling the manix package from the latest flake:
2021-02-14 02:38:20 +00:00
```nix
channels: final: prev: {
inherit (pkgs.latest) manix;
2021-02-14 02:38:20 +00:00
}
```
### Modules
You can also pull modules from other channels. All modules have access to the
`modulesPath` for each channel as `<channelName>ModulesPath`. And you can use
`disabledModules` to remove modules from the current channel.
2021-02-14 02:38:20 +00:00
Pulling the zsh module from the latest flake:
2021-02-14 02:38:20 +00:00
```nix
{ latestModulesPath }: {
modules = [ "${latestModulesPath}/programs/zsh/zsh.nix" ];
disabledModules = [ "programs/zsh/zsh.nix" ];
2021-02-14 02:38:20 +00:00
}
```
> ##### _Note:_
> Sometimes a modules name will change from one branch to another.
2021-02-14 02:38:20 +00:00
[nixpkgs-modules]: https://github.com/NixOS/nixpkgs/tree/master/nixos/modules