# SPDX-FileCopyrightText: 2025 Ethan Reece # # SPDX-License-Identifier: MIT { inputs, system, username, homeDirectory, ... }: { imports = [ ../base-linux.nix ]; sops.age.keyFile = "${homeDirectory}/.config/sops/age/keys.txt"; home = { inherit username homeDirectory; packages = [ inputs.pwndbg.packages.${system}.pwndbg ]; }; targets.genericLinux.enable = true; programs = { nushell.environmentVariables = { TERM = "xterm-256color"; }; zellij = { enable = true; attachExistingSession = true; }; }; }