1
0
Fork 0
nix-system-configurations/home-manager/raspi/home.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;
};
};
}