diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 19:52:10 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 19:52:10 -0700 |
| commit | 458d03208dc1a2ae0da6b711380bdc0c8eb978d6 (patch) | |
| tree | 0d156f2d8ec213bcc59b84a7cbf1b78a1b977cd9 /hosts/c-pc/home.nix | |
| parent | 427bff7d59080b7053ce37a88bfb42e078a40fba (diff) | |
c-pc: move keys to encrypted persist
Diffstat (limited to 'hosts/c-pc/home.nix')
| -rw-r--r-- | hosts/c-pc/home.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index c2efb51..28a5e12 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -26,9 +26,6 @@ "Persist" "code" - - ".gnupg" - ".ssh" ".local/bin" ".local/share/applications" @@ -74,6 +71,15 @@ ]; }; + home.persistence."/persist/secure/home" = { + allowOther = true; + + directories = [ + ".gnupg" + ".ssh" + ]; + }; + programs = { feh.enable = true; btop.enable = true; |