nixos-config/home/shell/bash.nix

12 lines
144 B
Nix
Raw Permalink Normal View History

2023-03-17 12:37:26 +01:00
{ config, pkgs, ... }:
2024-05-26 16:45:38 +02:00
let
shellAliases = import ./aliases.nix;
in
{
2023-03-17 12:37:26 +01:00
programs.bash = {
enable = true;
inherit shellAliases;
};
}