refactor: move programs into graphical and shell
This commit is contained in:
parent
68047c894e
commit
727d197f41
39 changed files with 68 additions and 62 deletions
39
configs/shell/default.nix
Normal file
39
configs/shell/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./scripts
|
||||
./comma.nix
|
||||
./direnv.nix
|
||||
./editorconfig.nix
|
||||
./fzf.nix
|
||||
./git.nix
|
||||
./nh.nix
|
||||
./nvf.nix
|
||||
./starship.nix
|
||||
./tealdeer.nix
|
||||
./yazi.nix
|
||||
./zellij.nix
|
||||
./zoxide.nix
|
||||
./zsh.nix
|
||||
];
|
||||
|
||||
home-manager.users.rafiq.home = {
|
||||
shell.enableShellIntegration = true;
|
||||
shellAliases = {
|
||||
gs = "git status";
|
||||
ai = "aichat -r %shell% -e";
|
||||
cd = "z";
|
||||
list-all-packages = "nix-store --query --requisites /run/current-system | cut -d- -f2- | sort | uniq";
|
||||
};
|
||||
|
||||
packages = with pkgs; [
|
||||
aichat
|
||||
bat
|
||||
btop # add settings as home-manager module
|
||||
devenv
|
||||
fastfetch
|
||||
ripgrep
|
||||
ttyper
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue