14 lines
262 B
Nix
14 lines
262 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../home-default.nix
|
|
];
|
|
|
|
# hs-specific home configuration
|
|
programs.zsh.shellAliases = {
|
|
# Disk health monitoring
|
|
smart-report = "sudo /home/yanlin/.config/nix/scripts/daily-smart-report.sh";
|
|
};
|
|
|
|
}
|