Files
nixos-configs/hosts/pinwheel/modules/python/default.nix
2024-06-15 13:13:49 +02:00

21 lines
358 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
];
};
};
}