mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 15:30:14 +00:00
more fixes
This commit is contained in:
@ -25,8 +25,9 @@ in
|
||||
] ++ (if pkgs.stdenv.isLinux then [ pkgs._1password-gui ] else [ ]);
|
||||
|
||||
# Firefox extension
|
||||
programs.firefox.profiles.default.extensions =
|
||||
pkgs.nur.repos.rycee.firefox-addons.onepassword-password-manager;
|
||||
programs.firefox.profiles.default.extensions = [
|
||||
pkgs.nur.repos.rycee.firefox-addons.onepassword-password-manager
|
||||
];
|
||||
};
|
||||
|
||||
# # https://1password.community/discussion/135462/firefox-extension-does-not-connect-to-linux-app
|
||||
|
@ -190,9 +190,9 @@ in
|
||||
lib.mkIf cfg.commands.systemdSearch != null "exec --no-startup-id ${cfg.commands.systemdSearch}";
|
||||
"${modifier}+Shift+a" =
|
||||
lib.mkIf cfg.commands.audioSwitch != null "exec --no-startup-id ${cfg.commands.audioSwitch}";
|
||||
"Mod1+Tab" =
|
||||
lib.mkIf cfg.commands.applicationSwitch
|
||||
!= null "exec --no-startup-id ${cfg.commands.applicationSwitch}";
|
||||
"Mod1+Tab" = lib.mkIf (
|
||||
cfg.commands.applicationSwitch != null
|
||||
) "exec --no-startup-id ${cfg.commands.applicationSwitch}";
|
||||
"${modifier}+Shift+period" =
|
||||
lib.mkIf cfg.commands.power != null "exec --no-startup-id ${cfg.commands.power}";
|
||||
"${modifier}+Shift+m" =
|
||||
|
Reference in New Issue
Block a user