14 lines
308 B
Nix
14 lines
308 B
Nix
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
../base.nix
|
|
./git.nix
|
|
];
|
|
home.sessionVariables = {
|
|
DISPLAY = ""; # Needed to prevent `ssh_askpass` from happening when using `sudo` in a windowed environment
|
|
};
|
|
}
|