mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:13:55 -05:00
home/apps: move eza and fzf to bash module
This commit is contained in:
parent
455fae315d
commit
24a0a097d3
|
@ -5,26 +5,40 @@
|
|||
...
|
||||
}: {
|
||||
config = lib.mkIf config.alyraffauf.apps.bash.enable {
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
enableVteIntegration = true;
|
||||
shellOptions = [
|
||||
"autocd"
|
||||
"cdspell"
|
||||
"checkjobs"
|
||||
"checkwinsize"
|
||||
"dirspell"
|
||||
"dotglob"
|
||||
"extglob"
|
||||
"globstar"
|
||||
"histappend"
|
||||
];
|
||||
initExtra = ''
|
||||
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
|
||||
'';
|
||||
shellAliases = {
|
||||
cat = lib.getExe pkgs.bat;
|
||||
programs = {
|
||||
eza = {
|
||||
enable = true;
|
||||
extraOptions = ["--group-directories-first" "--header"];
|
||||
git = true;
|
||||
icons = true;
|
||||
};
|
||||
|
||||
fzf = {
|
||||
enable = true;
|
||||
tmux.enableShellIntegration = true;
|
||||
};
|
||||
|
||||
bash = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
enableVteIntegration = true;
|
||||
shellOptions = [
|
||||
"autocd"
|
||||
"cdspell"
|
||||
"checkjobs"
|
||||
"checkwinsize"
|
||||
"dirspell"
|
||||
"dotglob"
|
||||
"extglob"
|
||||
"globstar"
|
||||
"histappend"
|
||||
];
|
||||
initExtra = ''
|
||||
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
|
||||
'';
|
||||
shellAliases = {
|
||||
cat = lib.getExe pkgs.bat;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -9,11 +9,9 @@
|
|||
./bash
|
||||
./chromium
|
||||
./emacs
|
||||
./eza
|
||||
./fastfetch
|
||||
./firefox
|
||||
./fuzzel
|
||||
./fzf
|
||||
./keepassxc
|
||||
./librewolf
|
||||
./mako
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.alyraffauf.apps.eza.enable {
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
extraOptions = ["--group-directories-first" "--header"];
|
||||
git = true;
|
||||
icons = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.alyraffauf.apps.fzf.enable {
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
tmux.enableShellIntegration = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -19,11 +19,9 @@
|
|||
};
|
||||
};
|
||||
emacs.enable = lib.mkEnableOption "Emacs text editor.";
|
||||
eza.enable = lib.mkEnableOption "Eza ls alternative.";
|
||||
fastfetch.enable = lib.mkEnableOption "Fastfetch.";
|
||||
firefox.enable = lib.mkEnableOption "Firefox web browser.";
|
||||
fuzzel.enable = lib.mkEnableOption "Fuzzel app launcher.";
|
||||
fzf.enable = lib.mkEnableOption "Fzf fuzzy file finder.";
|
||||
keepassxc = {
|
||||
enable = lib.mkEnableOption "KeePassXC password manager.";
|
||||
settings = lib.mkOption {
|
||||
|
|
|
@ -253,12 +253,9 @@
|
|||
package = pkgs.brave;
|
||||
};
|
||||
emacs.enable = true;
|
||||
eza.enable = true;
|
||||
fastfetch.enable = true;
|
||||
firefox.enable = true;
|
||||
fzf.enable = true;
|
||||
keepassxc.enable = true;
|
||||
neofetch.enable = true;
|
||||
neovim.enable = true;
|
||||
tmux.enable = true;
|
||||
vsCodium.enable = true;
|
||||
|
|
|
@ -35,9 +35,7 @@
|
|||
alacritty.enable = true;
|
||||
bash.enable = true;
|
||||
chromium.enable = true;
|
||||
eza.enable = true;
|
||||
firefox.enable = true;
|
||||
fzf.enable = true;
|
||||
vsCodium.enable = true;
|
||||
};
|
||||
desktop = {
|
||||
|
|
|
@ -33,9 +33,7 @@
|
|||
alacritty.enable = true;
|
||||
bash.enable = true;
|
||||
chromium.enable = true;
|
||||
eza.enable = true;
|
||||
firefox.enable = true;
|
||||
fzf.enable = true;
|
||||
vsCodium.enable = true;
|
||||
};
|
||||
theme = {
|
||||
|
|
Loading…
Reference in a new issue