Skip to content

Commit

Permalink
Merge pull request #630 from ojaskavathe/main
Browse files Browse the repository at this point in the history
Changed overrideAttrs to override in the nix docs
  • Loading branch information
Aylur authored Nov 18, 2024
2 parents bc46e27 + ac798e6 commit 3dd3eac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/guide/nix.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Or define a `devShell` and cherry pick packages.
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
# includes astal3 astal4 astal-io by default
(ags.packages.${system}.default.overrideAttrs { # [!code focus:5]
(ags.packages.${system}.default.override { # [!code focus:5]
extraPackages = [
# cherry pick packages
];
Expand Down
2 changes: 1 addition & 1 deletion nix/template/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# ags.packages.${system}.agsFull

# includes astal3 astal4 astal-io by default
(ags.packages.${system}.default.overrideAttrs {
(ags.packages.${system}.default.override {
extraPackages = [
# cherry pick packages
];
Expand Down

0 comments on commit 3dd3eac

Please sign in to comment.