From 5f8f646ae1d96b0507ea792a7b390f76dcef2c06 Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Fri, 11 Oct 2024 12:20:59 +0200 Subject: [PATCH] Fix tethys --- home/features/cli/pass.nix | 19 ------------------- home/tethys.nix | 14 ++++++-------- 2 files changed, 6 insertions(+), 27 deletions(-) delete mode 100644 home/features/cli/pass.nix diff --git a/home/features/cli/pass.nix b/home/features/cli/pass.nix deleted file mode 100644 index b4998cb..0000000 --- a/home/features/cli/pass.nix +++ /dev/null @@ -1,19 +0,0 @@ -# I use bitwarden as my main password manager. -# -# This currently acts as a simple local libsecret store. -{ pkgs, config, lib, ... }: -let storePath = "${config.home.homeDirectory}/.password-store"; -in -{ - programs.password-store = { - enable = true; - settings.PASSWORD_STORE_DIR = storePath; - }; - - services.pass-secret-service = { - inherit storePath; - enable = true; - }; - - satellite.persistence.at.data.apps.pass.directories = [ storePath ]; -} diff --git a/home/tethys.nix b/home/tethys.nix index 6cb6c9a..91a7b07 100644 --- a/home/tethys.nix +++ b/home/tethys.nix @@ -3,19 +3,17 @@ imports = [ ./global.nix - ./features/desktop/zathura.nix - ./features/desktop/spotify.nix - ./features/desktop/obsidian.nix - ./features/desktop/foot.nix - ./features/desktop/firefox - ./features/desktop/discord ./features/cli/catgirl.nix - ./features/cli/gpg.nix ./features/cli/lazygit.nix ./features/cli/nix-index.nix - ./features/cli/pass.nix ./features/cli/productivity ./features/cli/zellij.nix + ./features/desktop/discord + ./features/desktop/firefox + ./features/desktop/foot.nix + ./features/desktop/obsidian.nix + ./features/desktop/spotify.nix + ./features/desktop/zathura.nix ./features/wayland/hyprland ./features/neovim ];