20 lines
529 B
Nix
20 lines
529 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../home-default.nix
|
|
../../../modules/syncthing.nix
|
|
];
|
|
|
|
# hs-specific home configuration
|
|
programs.zsh.shellAliases = {
|
|
# Disk health monitoring
|
|
smart-report = "sudo /home/yanlin/.config/nix/scripts/daily-smart-report.sh";
|
|
move-inbox = "cp -rl /mnt/storage/Media/downloads/.inbox/* /mnt/storage/Media/downloads/inbox && chown -R yanlin:users /mnt/storage/Media/downloads/inbox";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
texlive.combined.scheme-full
|
|
];
|
|
|
|
}
|