This commit is contained in:
Lilith 2024-07-14 22:33:17 +02:00
parent 6b2d319deb
commit dcdb94250c
Signed by: lilith
GPG key ID: 8712A0F317C37175
4 changed files with 14 additions and 19 deletions

View file

@ -1,12 +1,14 @@
{conf, config,...}: {
{conf, config, pkgs, ...}: {
home = {
file.inbox.source = config.lib.file.mkOutOfStoreSymLink "/home/${conf.user}/sync/inbox";
file.inbox.source = config.lib.file.mkOutOfStoreSymlink "/home/${conf.user}/sync/inbox";
shellAliases = [
cat = "bat -p"
ls = "eza"
ll = "eza -l"
la = "eza -la"
];
shellAliases = {
cat = "bat -p";
"." = "source";
ls = "${pkgs.eza}/bin/eza -g --git --group-directories-first";
ll = "${pkgs.eza}/bin/eza -l";
la = "${pkgs.eza}/bin/eza -la";
grep = "grep --color=auto";
};
};
}

View file

@ -31,11 +31,13 @@
htop
ollama
zoom-us
];
gaming = with pkgs; [
prismlauncher
lutris
steamtinkerlaunch
];
in
common ++ (lib.optionals system-config.gaming.enable gaming);

View file

@ -21,6 +21,7 @@
".local/share/PrismLauncher"
".local/share/Steam"
".local/share/lutris"
".local/share/games"
];
files = [];
};

View file

@ -1,13 +1,4 @@
{pkgs, ...}: let
aliases = {
"." = "source";
ls = "EXA_COLORS='xx=2;37' ${pkgs.eza}/bin/eza -g --git --group-directories-first";
l = "ls -aal";
atree = "ls -alT";
tree = "ls -lT";
grep = "grep --color=auto";
};
in {
{pkgs, ...}: {
programs.zsh = {
enable = true;
autosuggestion.enable = true;
@ -34,6 +25,5 @@ in {
zstyle ':completion:*' menu select
'';
shellAliases = aliases;
};
}