Files
flake/home/hosts/eris.nix
T
2026-05-17 10:24:49 +08:00

25 lines
502 B
Nix

{ config, lib, pkgs, ... }:
{
home.homeDirectory = "/home/origami";
imports = [
../modules/common.nix
../modules/shell.nix
../modules/zsh.nix
../modules/desktop.nix
../modules/shell-develop.nix
../modules/vscode.nix
../modules/gnome-dconf.nix
../modules/ssh.nix
../modules/nix-config.nix
];
home.packages = with pkgs;[
# system call monitoring
strace # system call monitoring
ltrace # library call monitoring
lsof # list open files
];
}