about summary refs log tree commit diff
path: root/home/seahorse
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-03-10 18:58:08 -0800
committerFranck Cuny <franck@fcuny.net>2023-03-10 18:58:08 -0800
commit5dba39231cc47a18126dc7358255f540a5deb120 (patch)
tree0dc7db2fe22aee301a68aad55c0c1336867e2174 /home/seahorse
parenthome/pass: configure passage properly (diff)
downloadworld-5dba39231cc47a18126dc7358255f540a5deb120.tar.gz
home/gnome: no more keyring
I used the keyring only to start the GPG agent and unlock the ssh keys.
But since I'm storing the ssh keys on yubikeys and I don't use GPG, I
can remove it.
Diffstat (limited to 'home/seahorse')
-rw-r--r--home/seahorse/default.nix10
1 files changed, 0 insertions, 10 deletions
diff --git a/home/seahorse/default.nix b/home/seahorse/default.nix
deleted file mode 100644
index d37395e..0000000
--- a/home/seahorse/default.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{ lib, config, pkgs, ... }:
-let cfg = config.my.home.seahorse;
-in
-{
-  options.my.home.seahorse = with lib; {
-    enable = mkEnableOption "seahorse configuration";
-  };
-
-  config.home.packages = with pkgs; lib.mkIf cfg.enable ([ gnome.seahorse ]);
-}