29 lines
592 B
Nix
29 lines
592 B
Nix
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
|
|
#
|
|
# 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;
|
|
};
|
|
};
|
|
}
|