Skip to content

Commit

Permalink
chore: update locks
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Dec 3, 2024
1 parent fb32c41 commit a3d90dc
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 69 deletions.
132 changes: 66 additions & 66 deletions local/lock/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion units/nixos/nixosModules/omnibus/coding/python.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
};
extraPackages = mkOption {
type = types.functionTo (types.listOf types.package);
default = [ ];
default = (ps: [ ]);
description = "The language server package to use";
};
};
Expand Down
2 changes: 1 addition & 1 deletion units/nixos/nixosProfiles/presets/coding/d2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# environment.variables.PLAYWRIGHT_BROWSERS_PATH =
# pkgs.playwright-driver.browsers.outPath;
environment.systemPackages = with pkgs; [
playwright
# python3Packages.playwright
d2
];
}
3 changes: 2 additions & 1 deletion units/nixos/nixosProfiles/presets/coding/python.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ let
six
paramiko
rapidfuzz
watchdog
])
++ [ ]
++ (cfg.extraPackages ps)
)
)
);
Expand Down

0 comments on commit a3d90dc

Please sign in to comment.