16 lines
303 B
Nix
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 ];
|
|
};
|
|
}
|