refactor(shell): split shell config
This commit is contained in:
parent
fe0d7069c1
commit
22bf1600b1
7 changed files with 102 additions and 85 deletions
9
home/shell/bash.nix
Normal file
9
home/shell/bash.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let shellAliases = import ./aliases.nix;
|
||||
in {
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
inherit shellAliases;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue