From 38e7944600021a18fb0278815837e646619c24f6 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 23 Nov 2022 00:38:27 +0100 Subject: [PATCH 1/2] zephyrus: don't backup secrets --- hosts/zephyrus/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/zephyrus/default.nix b/hosts/zephyrus/default.nix index a498e4a..b267958 100644 --- a/hosts/zephyrus/default.nix +++ b/hosts/zephyrus/default.nix @@ -74,6 +74,9 @@ # test vms "*.qcow2" + # secrets stay offline + "/home/alarsyo/**/secrets" + # ignore all dotfiles as .config and .cache can become quite big "/home/alarsyo/.*" ]; From 7175fa1b0102c29a9e0ba890f627e8c25946f656 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 23 Nov 2022 00:38:38 +0100 Subject: [PATCH 2/2] home: ssh: add included config file to ssh_config --- home/ssh.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/ssh.nix b/home/ssh.nix index 3f80b3b..a5beda4 100644 --- a/home/ssh.nix +++ b/home/ssh.nix @@ -49,6 +49,8 @@ in { proxyJump = "ssh.lrde.epita.fr"; }; }; + + includes = [ "prologin_config" ]; }; }; }