mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat: provide support for more archtectures
This commit is contained in:
parent
350f08daa8
commit
36a874e400
6 changed files with 756 additions and 776 deletions
24
overlays/default.nix
Normal file
24
overlays/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ inputs, ... }: {
|
||||
additions = final: _prev: import ../pkgs { pkgs = final; };
|
||||
modifications = final: _prev: {
|
||||
# example = prev.example.overrideAttrs (oldAttrs: rec {
|
||||
# ...
|
||||
# });
|
||||
|
||||
# river = prev.river.overrideAttrs (oldAttrs: rec {
|
||||
# pname = "river";
|
||||
# version = "git";
|
||||
# src = prev.fetchFromGitHub {
|
||||
# owner = "riverwm";
|
||||
# repo = pname;
|
||||
# rev = "c16628c7f57c51d50f2d10a96c265fb0afaddb02";
|
||||
# hash = "sha256-E3Xtv7JeCmafiNmpuS5VuLgh1TDAbibPtMo6A9Pz6EQ=";
|
||||
# fetchSubmodules = true;
|
||||
# };
|
||||
# });
|
||||
};
|
||||
|
||||
nixpkgs-stable = final: _prev: {
|
||||
stable = import inputs.nixpkgs-stable { inherit (final) system; };
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue