Cleanup
This commit is contained in:
parent
b7b348c163
commit
3d86adb45f
41 changed files with 124 additions and 81 deletions
25
modules/profile.nix
Normal file
25
modules/profile.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
profileExtra = ''
|
||||
export TERM="xterm-256color"
|
||||
export EDITOR="vim"
|
||||
alias gst="git status"
|
||||
alias gco="git commit";
|
||||
alias glo="git log";
|
||||
alias gad="git add";
|
||||
alias ls="exa";
|
||||
alias ll="exa -l";
|
||||
alias la="exa -la";
|
||||
alias mv="mv -i";
|
||||
alias cp="cp -i";
|
||||
'';
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
pkgs.exa
|
||||
pkgs.fzf
|
||||
];
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue