mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
14 lines
341 B
Nix
14 lines
341 B
Nix
# python with all the venom
|
|
|
|
{ config, lib, pkgs, user, ... }:
|
|
|
|
let
|
|
cfg = config.modules.devel.python;
|
|
in {
|
|
options.modules.devel.python.enable = lib.mkEnableOption "python";
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
# Install packages
|
|
environment.systemPackages = with pkgs; [ python3 python3Packages.virtualenv beancount fava ];
|
|
};
|
|
} |