hyprland workspaces
This commit is contained in:
parent
c0a973924a
commit
54211f0b72
4 changed files with 13 additions and 17 deletions
|
|
@ -75,17 +75,6 @@ in {
|
||||||
home-manager.users.${user}.imports = [
|
home-manager.users.${user}.imports = [
|
||||||
{
|
{
|
||||||
home.stateVersion = "22.05";
|
home.stateVersion = "22.05";
|
||||||
|
|
||||||
# TODO: put this in the displays module
|
|
||||||
wayland.windowManager.hyprland = {
|
|
||||||
extraConfig = ''
|
|
||||||
workspace = 1, monitor:DP-1
|
|
||||||
workspace = 2, monitor:DP-1
|
|
||||||
workspace = 3, monitor:DP-1
|
|
||||||
workspace = 4, monitor:DP-1
|
|
||||||
workspace = 5, monitor:DP-1
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,8 @@
|
||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs; [wlr-randr nwg-displays];
|
home.packages = with pkgs; [wlr-randr nwg-displays];
|
||||||
|
|
||||||
wayland.windowManager.hyprland.settings.source = ["~/.config/hypr/monitors.conf"];
|
wayland.windowManager.hyprland.settings.source = [
|
||||||
|
"~/.config/hypr/monitors.conf"
|
||||||
|
"~/.config/hypr/workspaces.conf"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,14 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
programs.alacritty.enable = true;
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
window = {
|
||||||
|
opacity = lib.mkForce 0.8;
|
||||||
|
dynamic_title = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -108,10 +108,6 @@ in {
|
||||||
|
|
||||||
hardware.opentabletdriver.enable = true;
|
hardware.opentabletdriver.enable = true;
|
||||||
|
|
||||||
qt.enable = true;
|
|
||||||
qt.platformTheme = "gtk2";
|
|
||||||
qt.style = "gtk2";
|
|
||||||
|
|
||||||
services.printing.enable = true;
|
services.printing.enable = true;
|
||||||
|
|
||||||
users.users.${user} = {
|
users.users.${user} = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue