mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-13 00:49:44 +00:00
14 lines
331 B
Nix
14 lines
331 B
Nix
_: {
|
|
home.sessionVariables = {
|
|
# default editor
|
|
EDITOR = "nvim";
|
|
NIXPKGS_ALLOW_UNFREE = 1;
|
|
|
|
# sshaskpass
|
|
SSH_ASKPASS = "/home/user/.nix-profile/bin/ksshaskpass";
|
|
SSH_ASKPASS_REQUIRE = "prefer";
|
|
|
|
# Store git credentials in KDE Wallet
|
|
GIT_ASKPASS = "/home/user/.nix-profile/bin/ksshaskpass";
|
|
};
|
|
}
|