Files
nixos-configs/hosts/pinwheel/modules/python/default.nix
Alexander Heldt f15701f426 Apply nixfmt
2024-09-02 21:55:41 +02:00

26 lines
366 B
Nix

{
pkgs,
lib,
config,
...
}:
let
enabled = config.mod.python.enable;
in
{
options = {
mod.python = {
enable = lib.mkEnableOption "enable python module";
};
};
config = lib.mkIf enabled {
home-manager.users.alex = {
home.packages = [
pkgs.python3
pkgs.python312Packages.python-lsp-server
];
};
};
}