diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-12 14:15:24 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-12 14:15:24 -0800 |
commit | b05dd2936f86982552b83238c40d7eea32406bbf (patch) | |
tree | 4e4a57714affc7832fce30cc31b86dddeb121a6d /users | |
parent | hosts: rename commons to common (diff) | |
download | world-b05dd2936f86982552b83238c40d7eea32406bbf.tar.gz |
home-manager: delete keyring module
This needs to be setup at the host level.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/trust/default.nix | 1 | ||||
-rw-r--r-- | users/fcuny/desktop/trust/keyring.nix | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/users/fcuny/desktop/trust/default.nix b/users/fcuny/desktop/trust/default.nix index d881926..cc5e70a 100644 --- a/users/fcuny/desktop/trust/default.nix +++ b/users/fcuny/desktop/trust/default.nix @@ -3,7 +3,6 @@ { imports = [ ./git.nix - ./keyring.nix ./pass.nix ./pgp.nix ]; diff --git a/users/fcuny/desktop/trust/keyring.nix b/users/fcuny/desktop/trust/keyring.nix deleted file mode 100644 index 222448a..0000000 --- a/users/fcuny/desktop/trust/keyring.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ config, lib, pkgs, ... }: - -{ - services.gnome.gnome-keyring.enable = true; -} |