1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

refactor: move users/common to modules/config structure like for hosts

This commit is contained in:
oddlama 2023-09-10 12:44:58 +02:00
parent 2087bbce07
commit 4b5507f374
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
15 changed files with 14 additions and 14 deletions

View file

@ -0,0 +1,31 @@
{...}: {
imports = [
./nushell.nix
./starship.nix
./zsh
];
home.shellAliases = {
l = "ls -lahF --group-directories-first --show-control-chars --quoting-style=escape --color=auto";
t = "tree -F --dirsfirst -L 2";
tt = "tree -F --dirsfirst -L 3 --filelimit 16";
cpr = "rsync -axHAWXS --numeric-ids --info=progress2";
md = "mkdir";
rmd = "rm --one-file-system -d";
cp = "cp -vi";
mv = "mv -vi";
rm = "rm --one-file-system -I";
chmod = "chmod -c --preserve-root";
chown = "chown -c --preserve-root";
ip = "ip --color";
tmux = "tmux -2";
rg = "rg -S";
};
programs.atuin = {
enable = true;
settings.auto_sync = false;
};
}