dotfiles/nix/home-manager/modules/bash/default.nix
Magic_RB d3e46e5413
Complete module rework
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:36 +02:00

34 lines
783 B
Nix

{ pkgs, config, lib, ... }:
with lib;
let
nglib = config.magic_rb.pins.nixng.lib pkgs.stdenv.system;
cfg = config.magic_rb.programs.bash;
in
{
options.magic_rb.programs.bash = {
enable = mkEnableOption "Enable bash, the shell";
emacsclient-remote = mkOption {
description = "Enable emacsclient-remote and associated aliases";
type = types.bool;
default = true;
};
};
config = mkIf cfg.enable {
home.packages = mkIf cfg.emacsclient-remote [
pkgs.magic_rb.emacsclient-remote
];
home.file = {
".bashrc".source = nglib.writeSubstitutedFile {
name = ".bashrc";
file = ./bashrc;
substitutes = {
"exa" = "${pkgs.exa}";
"bat" = "${pkgs.bat}";
};
};
};
};
}