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