-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nixos): use overlays to use stable channel for wezterm
- Loading branch information
Showing
3 changed files
with
34 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{inputs, ...}: { | ||
# This one brings our custom packages from the 'pkgs' directory | ||
additions = final: _prev: import ../pkgs final.pkgs; | ||
|
||
# This one contains whatever you want to overlay | ||
# You can change versions, add patches, set compilation flags, anything really. | ||
# https://nixos.wiki/wiki/Overlays | ||
modifications = final: prev: { | ||
# example = prev.example.overrideAttrs (oldAttrs: rec { | ||
# ... | ||
# }); | ||
}; | ||
|
||
# When applied, the stable nixpkgs set (declared in the flake inputs) will | ||
# be accessible through 'pkgs.stable' | ||
stable-packages = final: _prev: { | ||
stable = import inputs.nixpkgs-stable { | ||
system = final.system; | ||
config.allowUnfree = true; | ||
}; | ||
}; | ||
} |