The Great Modularization
This commit is contained in:
parent
e0b7d60a8d
commit
eb279f1f65
34 changed files with 1356 additions and 1286 deletions
15
modules/home/bash.nix
Normal file
15
modules/home/bash.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
bash = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
switch = "sudo nixos-rebuild switch";
|
||||
boot = "sudo nixos-rebuild boot";
|
||||
};
|
||||
};
|
||||
|
||||
kitty.shellIntegration.enableBashIntegration = if config.programs.kitty.enable then true else false;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue