summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/config/environment.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/home/config/environment.nix b/home/config/environment.nix
index e09dbc4..82b6a18 100644
--- a/home/config/environment.nix
+++ b/home/config/environment.nix
@@ -35,7 +35,8 @@
shellAliases = let nix-code-path = "~/code/nix";
in {
amimullvad = "curl -Ls https://am.i.mullvad.net/connected";
- nixos-update-config = "sudo cp -rf ${nix-code-path}/latitude-7490/nixos/ /etc/";
+ nixos-update-config =
+ "sudo cp -rf ${nix-code-path}/latitude-7490/nixos/ /etc/";
rm = "rm -f";
ssh = "TERM=xterm-256color ssh";
mkenv = ''
@@ -59,7 +60,10 @@
nix-direnv.enable = true;
};
- services.gpg-agent.enable = true;
+ services.gpg-agent = {
+ enable = true;
+ enableSshSupport = true;
+ };
home.file.".config/latexmkrc".source = ./dotfiles/latexmkrc;
}