From 4b67981dacfb85df09339b60efaae3907ef388ca Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Wed, 6 Jul 2022 15:11:57 -0300 Subject: [PATCH] bump nix-colors and fix ssh remote forwards --- flake.lock | 6 +++--- flake.nix | 2 +- home/misterio/cli/ssh.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 0251956d..5ab6ba86 100644 --- a/flake.lock +++ b/flake.lock @@ -149,11 +149,11 @@ "base16-schemes": "base16-schemes" }, "locked": { - "lastModified": 1655899409, - "narHash": "sha256-2ekavfmPv13jN/uvF1k79gMzv4ttSWLQ2FtgVRTZ2Vw=", + "lastModified": 1657130915, + "narHash": "sha256-RmvKqcW6QujbbwT7LCoAWFVtqlTcN25W92ytu47QiU4=", "owner": "misterio77", "repo": "nix-colors", - "rev": "308fe8855ee4c35347baeaf182453396abdbe8df", + "rev": "d97b39696794be1ece13fd58996c9a102bc9a971", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 1a5814ed..3675d379 100644 --- a/flake.nix +++ b/flake.nix @@ -107,7 +107,7 @@ username = "misterio"; hostname = "atlas"; wallpaper = "painting-river-snow-forest-gold"; - colorscheme = "phd"; + colorscheme = "harmonic-dark"; persistence = true; desktop = "hyprland"; features = [ diff --git a/home/misterio/cli/ssh.nix b/home/misterio/cli/ssh.nix index ba8eb8d8..e17d867c 100644 --- a/home/misterio/cli/ssh.nix +++ b/home/misterio/cli/ssh.nix @@ -10,8 +10,8 @@ in host = concatStringsSep " " hostnames; forwardAgent = true; remoteForwards = [{ - bind.address = "$XDG_RUNTIME_DIR/gnupg/S.gpg-agent"; - host.address = "$XDG_RUNTIME_DIR/gnupg/S.gpg-agent.extra"; + bind.address = ''/run/user/1000/gnupg/S.gpg-agent''; + host.address = ''/run/user/1000/gnupg/S.gpg-agent.extra''; }]; }; };