initial commit
This commit is contained in:
commit
ebc1be5217
143 changed files with 7721 additions and 0 deletions
41
modules/features/shell.nix
Normal file
41
modules/features/shell.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ ... }:
|
||||
{
|
||||
config.dendritic.features.shell = {
|
||||
features = [
|
||||
"filemanager-yazi"
|
||||
"cli-zoxide"
|
||||
"git-lazygit"
|
||||
"cli-zsh"
|
||||
];
|
||||
|
||||
homeModules = [
|
||||
(
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
programs.zsh.enable = true;
|
||||
|
||||
home.packages = with pkgs; [ ripgrep ];
|
||||
}
|
||||
)
|
||||
../home/programs/starship.nix
|
||||
../home/programs/eza.nix
|
||||
../home/programs/bat.nix
|
||||
../home/programs/carapace.nix
|
||||
../home/programs/fzf.nix
|
||||
../home/programs/btop.nix
|
||||
../home/programs/atuin.nix
|
||||
../home/programs/broot.nix
|
||||
];
|
||||
|
||||
nixosModules = [
|
||||
(
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
users.users.${config.dendritic.current.primaryUser}.shell = pkgs.zsh;
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue