summary refs log tree commit diff
path: root/nixos/modules/services/desktops/gnome3
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-04-20 00:47:55 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-04-22 22:17:20 +0200
commitf6159b909572840fad8373fe94fdaab5d42a191a (patch)
tree97946429b8caff8b06431e9baaff9ffafccaa44b /nixos/modules/services/desktops/gnome3
parenta4ef8dd63403f5f1b77b24bc5ef26fcefb6fbcd3 (diff)
downloadnixlib-f6159b909572840fad8373fe94fdaab5d42a191a.tar
nixlib-f6159b909572840fad8373fe94fdaab5d42a191a.tar.gz
nixlib-f6159b909572840fad8373fe94fdaab5d42a191a.tar.bz2
nixlib-f6159b909572840fad8373fe94fdaab5d42a191a.tar.lz
nixlib-f6159b909572840fad8373fe94fdaab5d42a191a.tar.xz
nixlib-f6159b909572840fad8373fe94fdaab5d42a191a.tar.zst
nixlib-f6159b909572840fad8373fe94fdaab5d42a191a.zip
seahorse: new package
Application for managing encryption keys and passwords in the GnomeKeyring

https://wiki.gnome.org/Apps/Seahorse
Diffstat (limited to 'nixos/modules/services/desktops/gnome3')
-rw-r--r--nixos/modules/services/desktops/gnome3/seahorse.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixos/modules/services/desktops/gnome3/seahorse.nix b/nixos/modules/services/desktops/gnome3/seahorse.nix
new file mode 100644
index 000000000000..cad22a6a5983
--- /dev/null
+++ b/nixos/modules/services/desktops/gnome3/seahorse.nix
@@ -0,0 +1,38 @@
+# Seahorse daemon.
+
+{ config, pkgs, ... }:
+
+with pkgs.lib;
+
+{
+
+  ###### interface
+
+  options = {
+
+    services.gnome3.seahorse = {
+
+      enable = mkOption {
+        type = types.bool;
+        default = false;
+        description = ''
+          Whether to enable Seahorse search provider for the GNOME Shell activity search.
+        '';
+      };
+
+    };
+
+  };
+
+
+  ###### implementation
+
+  config = mkIf config.services.gnome3.seahorse.enable {
+
+    environment.systemPackages = [ pkgs.gnome3.seahorse ];
+
+    services.dbus.packages = [ pkgs.gnome3.seahorse ];
+
+  };
+
+}