From 79216e39e3ff952bb646aae15f9bdb2c60697070 Mon Sep 17 00:00:00 2001 From: sid Date: Mon, 18 May 2026 16:48:50 +0200 Subject: [PATCH] switch to bitwarden --- flake.lock | 8 ++++---- users/sid/home/hyprland/bitwarden.nix | 8 ++++++++ users/sid/home/hyprland/default.nix | 2 +- users/sid/home/hyprland/librewolf.nix | 13 ------------- 4 files changed, 13 insertions(+), 18 deletions(-) create mode 100644 users/sid/home/hyprland/bitwarden.nix delete mode 100644 users/sid/home/hyprland/librewolf.nix diff --git a/flake.lock b/flake.lock index d5d8063..4bf78d5 100644 --- a/flake.lock +++ b/flake.lock @@ -6856,11 +6856,11 @@ "stylix": "stylix_8" }, "locked": { - "lastModified": 1778449158, - "narHash": "sha256-CFmp5RjuwC6OjoSFNE9Fu4kJ526W6Y6G+SEXqRndP/I=", + "lastModified": 1779115194, + "narHash": "sha256-lDErrnCaaGu+FnnOk4uUfn90aDsWM3lhmgji57PsOaw=", "ref": "release-25.11", - "rev": "d953dd7f8a5d66dc1e98976a9d9a3f76f8e649bc", - "revCount": 72, + "rev": "5e963c26ecd71d85b087b302389ec9e5e9c9a0dc", + "revCount": 78, "type": "git", "url": "https://git.sid.ovh/sid/synix.git" }, diff --git a/users/sid/home/hyprland/bitwarden.nix b/users/sid/home/hyprland/bitwarden.nix new file mode 100644 index 0000000..a81d613 --- /dev/null +++ b/users/sid/home/hyprland/bitwarden.nix @@ -0,0 +1,8 @@ +{ + wayland.windowManager.hyprland.applications.password-manager.default = "rofi-rbw"; + + programs.rbw.settings = { + email = "sid@sid.ovh"; + base_url = "https://pw.sid.ovh"; + }; +} diff --git a/users/sid/home/hyprland/default.nix b/users/sid/home/hyprland/default.nix index 00c0ea9..b90521f 100644 --- a/users/sid/home/hyprland/default.nix +++ b/users/sid/home/hyprland/default.nix @@ -8,11 +8,11 @@ { imports = [ # ./anyrun.nix + ./bitwarden.nix ./flatpak.nix ./fzf-open.nix ./gpg.nix ./hyprland.nix - ./librewolf.nix ./newsboat.nix ./obs-studio.nix ./opencode.nix diff --git a/users/sid/home/hyprland/librewolf.nix b/users/sid/home/hyprland/librewolf.nix deleted file mode 100644 index 0258efb..0000000 --- a/users/sid/home/hyprland/librewolf.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ inputs, pkgs, ... }: - -let - inherit (pkgs.stdenv.hostPlatform) system; -in -{ - programs.librewolf = { - profiles.default.extensions.packages = - with inputs.nur.legacyPackages."${system}".repos.rycee.firefox-addons; [ - bitwarden - ]; - }; -}