refactor: clean up move to common

This commit is contained in:
matt1432 2023-10-15 16:05:28 -04:00
parent 6a83bbf94a
commit 0aaf7d522b
5 changed files with 42 additions and 35 deletions
common/modules/bash

View file

@ -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";

View file

@ -0,0 +1,15 @@
{ ... }: {
programs = {
fzf = {
enable = true;
enableBashIntegration = true;
};
ripgrep = {
enable = true;
arguments = [
"--no-config"
];
};
jq.enable = true;
};
}