mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
12 lines
261 B
Nix
12 lines
261 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
options.swarselmodules.bash = lib.mkEnableOption "bash settings";
|
|
config = lib.mkIf config.swarselmodules.bash {
|
|
|
|
programs.bash = {
|
|
bashrcExtra = ''
|
|
export PATH="${pkgs.nix}/bin:$PATH"
|
|
'';
|
|
};
|
|
};
|
|
}
|