1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-17 20:18:31 +02:00
home-manager/modules/programs/eclipse.nix
Robert Helgesson d7d02c3ce8
Initial import
2017-01-14 13:15:24 +01:00

40 lines
743 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.eclipse;
in
{
options = {
programs.eclipse = {
enable = mkEnableOption "Eclipse";
jvmArgs = mkOption {
type = types.listOf types.str;
default = [];
description = "JVM arguments to use for the Eclipse process.";
};
plugins = mkOption {
type = types.listOf types.package;
default = [];
description = "Plugins that should be added to Eclipse.";
};
};
};
config = mkIf cfg.enable {
home.packages = [
(pkgs.eclipses.eclipseWithPlugins {
eclipse = pkgs.eclipses.eclipse-platform;
jvmArgs = cfg.jvmArgs;
plugins = cfg.plugins;
})
];
};
}