about summary refs log tree commit diff
path: root/home/seahorse/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/seahorse/default.nix')
-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 ]);
-}