Files
nix-config/home/default.nix
T
imbytecat be247ff3b9 refactor: KISS cleanup — deduplicate shared config, merge thin files
- Extract fonts, fish.enable, openssh.enable to modules/shared/
- Centralize sshKeys in lib/ via specialArgs
- Merge nixos/base.nix + locale.nix into nixos/default.nix
- Merge home/theme.nix into home/default.nix
- Simplify homeManagerConfig, flake packages output
- Remove redundant vim/wget from NixOS system packages
- Update AGENTS.md to reflect new structure
2026-04-13 22:25:55 +08:00

62 lines
956 B
Nix

{
inputs,
username,
pkgs,
...
}:
{
imports = [
inputs.catppuccin.homeModules.catppuccin
./shell
./dev
];
catppuccin = {
enable = true;
flavor = "mocha";
};
home = {
username = username;
homeDirectory = if pkgs.stdenv.isDarwin then "/Users/${username}" else "/home/${username}";
stateVersion = "24.11";
};
# ── User-level packages ────────────────────────────
home.packages = with pkgs; [
# Modern CLI replacements
dust # du
duf # df
procs # ps
sd # sed
jq # JSON
yq # YAML
wget
# System info
fastfetch
tealdeer # tldr
# File management
gomi
# Nix tools
nix-output-monitor # nom
nvd # nix version diff
nh # nix helper
just
# AI coding agent
opencode
comment-checker
# Misc
ffmpeg
pandoc
];
# XDG directories
xdg.enable = true;
}