1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-19 14:16:09 +02:00
git.oat.zone--dark-firepit-.../modules/dev/python.nix
2022-04-23 03:01:00 +02:00

22 lines
351 B
Nix

{ pkgs, lib, options, config, ... }:
with lib;
let
cfg = config.modules.dev.python;
in {
options.modules.dev.python = {
enable = mkOption {
type = types.bool;
default = false;
};
packages = mkOption {
type = types.listOf types.package;
default = [];
};
};
config = mkIf cfg.enable {
# TODO
};
}