steam
This commit is contained in:
parent
6b2d319deb
commit
dcdb94250c
4 changed files with 14 additions and 19 deletions
18
home/env.nix
18
home/env.nix
|
|
@ -1,12 +1,14 @@
|
||||||
{conf, config,...}: {
|
{conf, config, pkgs, ...}: {
|
||||||
home = {
|
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 = [
|
shellAliases = {
|
||||||
cat = "bat -p"
|
cat = "bat -p";
|
||||||
ls = "eza"
|
"." = "source";
|
||||||
ll = "eza -l"
|
ls = "${pkgs.eza}/bin/eza -g --git --group-directories-first";
|
||||||
la = "eza -la"
|
ll = "${pkgs.eza}/bin/eza -l";
|
||||||
];
|
la = "${pkgs.eza}/bin/eza -la";
|
||||||
|
grep = "grep --color=auto";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -31,11 +31,13 @@
|
||||||
htop
|
htop
|
||||||
|
|
||||||
ollama
|
ollama
|
||||||
|
zoom-us
|
||||||
];
|
];
|
||||||
|
|
||||||
gaming = with pkgs; [
|
gaming = with pkgs; [
|
||||||
prismlauncher
|
prismlauncher
|
||||||
lutris
|
lutris
|
||||||
|
steamtinkerlaunch
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
common ++ (lib.optionals system-config.gaming.enable gaming);
|
common ++ (lib.optionals system-config.gaming.enable gaming);
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
".local/share/PrismLauncher"
|
".local/share/PrismLauncher"
|
||||||
".local/share/Steam"
|
".local/share/Steam"
|
||||||
".local/share/lutris"
|
".local/share/lutris"
|
||||||
|
".local/share/games"
|
||||||
];
|
];
|
||||||
files = [];
|
files = [];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,4 @@
|
||||||
{pkgs, ...}: let
|
{pkgs, ...}: {
|
||||||
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 {
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = true;
|
||||||
|
|
@ -34,6 +25,5 @@ in {
|
||||||
|
|
||||||
zstyle ':completion:*' menu select
|
zstyle ':completion:*' menu select
|
||||||
'';
|
'';
|
||||||
shellAliases = aliases;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue