Rearrange home packages import

This commit is contained in:
Yan Lin 2025-08-29 23:19:50 +02:00
parent 6368fe594a
commit 1ac0a29a59
5 changed files with 36 additions and 61 deletions

View file

@ -1,19 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Network and file transfer
lftp
termscp
httpie
openssh
rsync
gnumake
# Command-line utilities
ncdu
git-credential-oauth
zoxide
delta
];
}

View file

@ -1,14 +0,0 @@
{ pkgs, claude-code, ... }:
{
home.packages = with pkgs; [
# macOS-specific GUI applications
maccy # Clipboard manager (macOS-only)
appcleaner # Application uninstaller (macOS-only)
iina # Media player (macOS-optimized)
hidden-bar # Menu bar organizer (macOS-only)
# Tools
claude-code.packages.aarch64-darwin.claude-code
];
}

View file

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Development and build tools
texlive.combined.scheme-full
python312
uv
# Database and data tools
lazysql
sqlite
];
}

View file

@ -1,9 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
papis
keepassxc # Password manager (Linux/Windows/macOS)
syncthing # File synchronization (cross-platform)
];
}

View file

@ -17,10 +17,6 @@
../modules/ghostty.nix ../modules/ghostty.nix
../modules/syncthing.nix ../modules/syncthing.nix
../config/fonts.nix ../config/fonts.nix
../config/packages/common.nix
../config/packages/darwin.nix
../config/packages/dev.nix
../config/packages/productivity.nix
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
@ -30,4 +26,39 @@
home.stateVersion = "24.05"; home.stateVersion = "24.05";
programs.home-manager.enable = true; programs.home-manager.enable = true;
home.packages = with pkgs; [
# Network and file transfer
lftp
termscp
httpie
openssh
rsync
gnumake
# Command-line utilities
ncdu
git-credential-oauth
zoxide
delta
# macOS-specific GUI applications
maccy # Clipboard manager (macOS-only)
appcleaner # Application uninstaller (macOS-only)
iina # Media player (macOS-optimized)
hidden-bar # Menu bar organizer (macOS-only)
# Development and build tools
texlive.combined.scheme-full
python312
uv
claude-code.packages.aarch64-darwin.claude-code
lazysql
sqlite
# Productivity apps
papis
keepassxc # Password manager (Linux/Windows/macOS)
syncthing # File synchronization (cross-platform)
];
} }