Evie Litherland-Smith
763a1d2a05
Place home-manager config under home directory, move system config under system directory. Add hostname-specific entries under home directory to be consistent with how system is configured, update flake accordingly
45 lines
869 B
Nix
45 lines
869 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./bottom.nix
|
|
./fastfetch.nix
|
|
./git.nix
|
|
./ssh.nix
|
|
./starship.nix
|
|
./zsh.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
rclone
|
|
git-sync
|
|
du-dust
|
|
];
|
|
programs = {
|
|
bash.enable = true;
|
|
bat = {
|
|
enable = true;
|
|
config = {
|
|
theme = "OneHalfLight";
|
|
style = "plain,numbers,changes";
|
|
};
|
|
};
|
|
eza = {
|
|
enable = true;
|
|
git = true;
|
|
icons = true;
|
|
extraOptions = ["--octal-permissions"];
|
|
};
|
|
direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
fd.enable = true;
|
|
fzf = {
|
|
enable = true;
|
|
defaultCommand = "${pkgs.fd}/bin/fd --type f";
|
|
changeDirWidgetCommand = "${pkgs.fd}/bin/fd --type d";
|
|
fileWidgetCommand = "${pkgs.fd}/bin/fd --type f";
|
|
};
|
|
jq.enable = true;
|
|
ripgrep.enable = true;
|
|
};
|
|
}
|