Skip to content

Commit

Permalink
➕ Add bitwarden
Browse files Browse the repository at this point in the history
  • Loading branch information
turtton committed Jan 18, 2025
1 parent 883738c commit 43d7a97
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions home-manager/gui/shared/bitwarden.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{ pkgs, hostPlatform, ... }: {
programs.rbw = {
enable = true;
email = "[email protected]";
};
home.packages = with pkgs; lib.options hostPlatform.isLinux [
bitwarden-desktop
];
}
1 change: 1 addition & 0 deletions home-manager/gui/shared/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
] else [ ] ++ [
./browser.nix
./media.nix
./bitwarden.nix
];

home.packages = with pkgs; lib.optionals hostPlatform.isDarwin [
Expand Down
1 change: 1 addition & 0 deletions home-manager/wm/hyprland/key-bindings.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"$mainMod SHIFT, F, togglefloating"
"$mainMod SHIFT, P, pin"
"$mainMod, V, exec, rofi -modi clipboard:${pkgs.cliphist}/bin/cliphist-rofi-img -show clipboard -show-icons -theme-str '##element-icon {size: 5ch; }'"
"$mainMod, P, exec, ${pkgs.rofi-rbw-wayland}/bin/rofi-rbw"

# move focus
"$subMod, left, movefocus, left"
Expand Down

0 comments on commit 43d7a97

Please sign in to comment.