mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: use zen browser for all architectures
This commit is contained in:
parent
ce8d4815f7
commit
e325a7be3e
3 changed files with 97 additions and 92 deletions
|
@ -37,7 +37,12 @@
|
|||
];
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
swapDevices = [
|
||||
{
|
||||
device = "/var/lib/swapfile";
|
||||
size = 32 * 1024;
|
||||
}
|
||||
];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
|
|
|
@ -29,8 +29,7 @@
|
|||
# "XCURSOR_THEME,Bibata-Modern-Ice"
|
||||
# "XCURSOR_SIZE,26"
|
||||
# ];
|
||||
bind =
|
||||
[
|
||||
bind = [
|
||||
# Application Keybinds
|
||||
"$mod, T, exec, ${pkgs.kitty}/bin/kitty"
|
||||
"$mod, E, exec, ${pkgs.xfce.thunar}/bin/thunar"
|
||||
|
@ -129,10 +128,11 @@
|
|||
",XF86AudioPlay, exec, ${pkgs.playerctl}/bin/playerctl --player=%any,firefox play-pause"
|
||||
",XF86AudioNext, exec, ${pkgs.playerctl}/bin/playerctl --player=%any,firefox next"
|
||||
",XF86AudioRewind, exec, ${pkgs.playerctl}/bin/playerctl --player=%any,firefox previous"
|
||||
]
|
||||
++ (
|
||||
if pkgs.system != "aarch64-linux" then [ "$mod, F, exec, zen" ] else [ "$mod, F, exec, floorp" ]
|
||||
);
|
||||
"$mod, F, exec, zen"
|
||||
];
|
||||
# ++ (
|
||||
# if pkgs.system != "aarch64-linux" then [ "$mod, F, exec, zen" ] else [ "$mod, F, exec, floorp" ]
|
||||
# );
|
||||
bindm = [
|
||||
"$mod, mouse:272, movewindow"
|
||||
"$mod, mouse:273, resizewindow"
|
||||
|
|
|
@ -3,6 +3,6 @@ let
|
|||
createCommon = import ../common-packages.nix;
|
||||
in
|
||||
{
|
||||
home.packages = (createCommon pkgs) ++ (with pkgs; [ floorp ]);
|
||||
home.packages = (createCommon pkgs) ++ (with pkgs; [ ]);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue