You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
47 lines
1.0 KiB
{ config, pkgs, pkgs-unstable, username, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
dunst
|
|
waybar
|
|
swww
|
|
rofi
|
|
# (pkgs.waybar.overrideAttrs (oldAttrs: {
|
|
# mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
|
|
# }))
|
|
];
|
|
|
|
|
|
wayland.windowManager.hyprland.enable = true;
|
|
wayland.windowManager.hyprland.settings = {
|
|
|
|
"$mod" = "SUPER";
|
|
exec-once = [
|
|
"dunst"
|
|
"waybar"
|
|
];
|
|
|
|
bind =
|
|
[
|
|
"$mod, F, exec, firefox"
|
|
"$mod, k, exec, kitty"
|
|
", Print, exec, grimblast copy area"
|
|
]
|
|
++ (
|
|
# workspaces
|
|
# binds $mod + [shift +] {1..10} to [move to] workspace {1..10}
|
|
builtins.concatLists (builtins.genList (
|
|
x: let
|
|
ws = let
|
|
c = (x + 1) / 10;
|
|
in
|
|
builtins.toString (x + 1 - (c * 10));
|
|
in [
|
|
"$mod, ${ws}, workspace, ${toString (x + 1)}"
|
|
"$mod SHIFT, ${ws}, movetoworkspace, ${toString (x + 1)}"
|
|
]
|
|
)
|
|
10)
|
|
);
|
|
};
|
|
} |