Rearrange files

This commit is contained in:
Yan Lin 2025-08-29 21:59:11 +02:00
parent 6691d3c037
commit 2a3a4aece9
8 changed files with 30 additions and 18 deletions

View file

@ -2,32 +2,18 @@
{
home.packages = with pkgs; [
# Development and build tools
texlive.combined.scheme-full
python312
uv
gnumake
# Network and file transfer
lftp
termscp
httpie
openssh
rsync
# Database and data tools
lazysql
sqlite
papis
gnumake
# Command-line utilities
ncdu
git-credential-oauth
zoxide
delta
# Cross-platform applications
keepassxc # Password manager (Linux/Windows/macOS)
syncthing # File synchronization (cross-platform)
];
}

14
config/packages/dev.nix Normal file
View file

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

View file

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

View file

@ -65,6 +65,8 @@
./config/fonts.nix
./config/packages/common.nix
./config/packages/darwin.nix
./config/packages/dev.nix
./config/packages/productivity.nix
];
nixpkgs.config.allowUnfree = true;

View file

@ -8,5 +8,6 @@
# Import common Darwin configuration
imports = [
../../../system
../../../system/darwin
];
}
}

View file

@ -8,5 +8,6 @@
# Import common Darwin configuration
imports = [
../../../system
../../../system/darwin
];
}
}

View file

@ -2,7 +2,6 @@
{
imports = [
./darwin/defaults.nix
];
}