[misc] 重构项目结构

This commit is contained in:
2026-01-18 11:37:04 +08:00
parent 1267fc3d22
commit e75f6956b2
6 changed files with 7 additions and 9 deletions
+27
View File
@@ -0,0 +1,27 @@
{ config, lib, pkgs, ... }:
{
home.username = "origami";
home.homeDirectory = "/home/origami";
programs.home-manager.enable = true;
imports = [
./modules/shell.nix
./modules/desktop.nix
./modules/shell-develop.nix
./modules/vscode.nix
./modules/gnome-dconf.nix
];
nixpkgs.config.allowUnfreePredicate = _: true;
home.packages = with pkgs;[
# system call monitoring
strace # system call monitoring
ltrace # library call monitoring
lsof # list open files
];
programs.nix-index.enable = true;
home.stateVersion = "23.11";
}