refactor: clean up move to common
This commit is contained in:
parent
6a83bbf94a
commit
0aaf7d522b
5 changed files with 42 additions and 35 deletions
common/modules/bash
|
@ -1,19 +1,11 @@
|
|||
# Home-manager module
|
||||
|
||||
{ lib, ... }: {
|
||||
programs = {
|
||||
imports = [
|
||||
./programs.nix
|
||||
];
|
||||
|
||||
fzf = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
ripgrep = {
|
||||
enable = true;
|
||||
arguments = [
|
||||
"--no-config"
|
||||
];
|
||||
};
|
||||
jq.enable = true;
|
||||
programs = {
|
||||
|
||||
starship = let
|
||||
textColor = "#e3e5e5";
|
||||
|
|
15
common/modules/bash/programs.nix
Normal file
15
common/modules/bash/programs.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ ... }: {
|
||||
programs = {
|
||||
fzf = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
ripgrep = {
|
||||
enable = true;
|
||||
arguments = [
|
||||
"--no-config"
|
||||
];
|
||||
};
|
||||
jq.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue