mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
move hyprspace to file
This commit is contained in:
@@ -11,7 +11,12 @@ let
|
|||||||
keyboardLayout = config.var.keyboardLayout;
|
keyboardLayout = config.var.keyboardLayout;
|
||||||
in {
|
in {
|
||||||
|
|
||||||
imports = [ ./animations.nix ./bindings.nix ./polkitagent.nix ];
|
imports = [
|
||||||
|
./animations.nix
|
||||||
|
./bindings.nix
|
||||||
|
./polkitagent.nix
|
||||||
|
# ./hyprspace.nix
|
||||||
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
qt5.qtwayland
|
qt5.qtwayland
|
||||||
@@ -42,8 +47,6 @@ in {
|
|||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
package = inputs.hyprland.packages."${pkgs.system}".hyprland;
|
package = inputs.hyprland.packages."${pkgs.system}".hyprland;
|
||||||
|
|
||||||
plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ];
|
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
"$shiftMod" = "SUPER_SHIFT";
|
"$shiftMod" = "SUPER_SHIFT";
|
||||||
@@ -53,8 +56,6 @@ in {
|
|||||||
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
|
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
|
||||||
];
|
];
|
||||||
|
|
||||||
plugin = { overview = { autoDrag = false; }; };
|
|
||||||
|
|
||||||
monitor = [
|
monitor = [
|
||||||
"eDP-2,highres,0x0,1"
|
"eDP-2,highres,0x0,1"
|
||||||
"DP-7, disable"
|
"DP-7, disable"
|
||||||
|
|||||||
7
home/system/hyprland/hyprspace.nix
Normal file
7
home/system/hyprland/hyprspace.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{ inputs, pkgs, ... }: {
|
||||||
|
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
plugins = [ inputs.hyprspace.packages.${pkgs.system}.Hyprspace ];
|
||||||
|
settings = { plugin = { overview = { autoDrag = false; }; }; };
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user