feat: pass and import plugins config
This commit is contained in:
parent
9724c8e4f4
commit
62c6c836e3
5 changed files with 40 additions and 15 deletions
|
@ -51,7 +51,6 @@
|
|||
protonvpn-gui
|
||||
devenv
|
||||
vlc
|
||||
zed-editor
|
||||
rhythmbox
|
||||
qq
|
||||
shotwell
|
||||
|
@ -78,7 +77,20 @@
|
|||
home-manager.enable = true;
|
||||
firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox-devedition;
|
||||
package = with pkgs; (firefox-devedition.override {
|
||||
nativeMessagingHosts = [
|
||||
(passff-host.overrideAttrs (old: {
|
||||
dontStrip = true;
|
||||
patchPhase = ''sed -i 's#COMMAND = "pass"#COMMAND = "${
|
||||
pass.withExtensions (ext:
|
||||
with ext; [
|
||||
pass-otp
|
||||
pass-import
|
||||
])
|
||||
}/bin/pass"#' src/passff.py'';
|
||||
}))
|
||||
];
|
||||
});
|
||||
};
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
config,
|
||||
pkgs,
|
||||
}: let
|
||||
terminalCmd = "${pkgs.foot}/bin/foot -f '${config.desktopFontFullName}:size=16' -o colors.alpha=0.80";
|
||||
terminalCmd = "${pkgs.foot}/bin/footclient";
|
||||
screenshotLocation = "/home/${config.myUserName}/Screenshots/$(date '+%Y-%m-%d-%H-%M-%S').png";
|
||||
in
|
||||
[
|
||||
|
|
|
@ -17,8 +17,9 @@
|
|||
xwayland = {force_zero_scaling = true;};
|
||||
monitor = [
|
||||
#"eDP-1, 1920x1080@165,0x0,1"
|
||||
"HDMI-A-1, 1920x1080@75, 2560x0, 1"
|
||||
"eDP-2,preferred, auto, ${builtins.toString config.displayScale}"
|
||||
"desc:XMI Mi 27 NFGL 3215000032603, 1920x1080@75, 2560x0, 1"
|
||||
"desc:BOE 0x0B40,preferred, auto, ${builtins.toString config.displayScale}"
|
||||
", preferred, auto, 1" # wildcard definition
|
||||
];
|
||||
general = {
|
||||
border_size = 1;
|
||||
|
@ -40,7 +41,7 @@
|
|||
exec-once =
|
||||
config.myAutostartCommands
|
||||
++ [
|
||||
"[workspace special silent] ${pkgs.foot}/bin/foot -f '${config.desktopFontFullName}:size=16' -o colors.alpha=0.80 ${config.myShells.defaultShell}"
|
||||
"[workspace special silent] ${pkgs.foot}/bin/footclient ${config.myShells.defaultShell}"
|
||||
];
|
||||
misc = {
|
||||
disable_hyprland_logo = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue