1
0
Fork 0
nix-system-configurations/home-manager/utd_syssec/home.nix
2025-09-26 19:22:52 -05:00

16 lines
303 B
Nix

# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
#
# SPDX-License-Identifier: MIT
{ inputs, system, ... }:
{
imports = [
../personal/ai.nix
../base.nix
../foreign.nix
../ssh-env.nix
];
home = {
packages = [ inputs.pwndbg.packages.${system}.pwndbg ];
};
}