mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
31 lines
480 B
Nix
31 lines
480 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../modules/home/git
|
|
../../modules/home/starship
|
|
];
|
|
|
|
programs = {
|
|
bat.enable = true;
|
|
zoxide = {
|
|
enable = true;
|
|
options = ["--cmd cd"];
|
|
};
|
|
zsh = {
|
|
enable = true;
|
|
shellAliases = {
|
|
ls = "lsd";
|
|
};
|
|
syntaxHighlighting.enable = true;
|
|
autosuggestion.enable = true;
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
busybox
|
|
lsd
|
|
];
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|