Files
Nixos/modules/home/common/env.nix
T

23 lines
270 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.shell.devenv;
in
{
options.home.shell.devenv = {
enable = mkEnableOption "System devenv service";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
devenv
];
};
}