nixos-config/home-manager/modules/nushell/default.nix

19 lines
368 B
Nix
Raw Normal View History

{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.eboskma.programs.nushell;
in
{
options.eboskma.programs.nushell = { enable = mkEnableOption "nu shell"; };
config = mkIf cfg.enable {
programs.nushell = {
enable = true;
configFile.source = ./config.nu;
envFile.source = ./env.nu;
};
2023-04-03 14:34:21 +02:00
home.packages = [ pkgs.carapace ];
};
}