22 lines
431 B
Nix
22 lines
431 B
Nix
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{ ... }:
|
|
|
|
let
|
|
username = "ethanreece";
|
|
in
|
|
{
|
|
sops.age.keyFile = /home/${username}/.config/sops/age/keys.txt;
|
|
home = {
|
|
username = username;
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
targets.genericLinux.enable = true;
|
|
programs = {
|
|
nushell.environmentVariables = {
|
|
TERM = "xterm-256color";
|
|
};
|
|
};
|
|
}
|