parent
ac2b846662
commit
691faaaec3
12 changed files with 184 additions and 162 deletions
modules/hyprland
19
modules/hyprland/Hyprspace.nix
Normal file
19
modules/hyprland/Hyprspace.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
Hyprspace,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
wayland.windowManager.hyprland = {
|
||||
plugins = [
|
||||
(Hyprspace.packages.${pkgs.system}.Hyprspace.overrideAttrs {
|
||||
dontUseCmakeConfigure = true;
|
||||
})
|
||||
];
|
||||
|
||||
settings = {
|
||||
bind = [
|
||||
"ALT, tab, overview:toggle"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -61,7 +61,9 @@ in {
|
|||
# HOME-MANAGER CONFIG
|
||||
home-manager.users.${mainUser} = {
|
||||
imports = [
|
||||
./hyprexpo.nix
|
||||
# FIXME: plugins broken https://github.com/hyprwm/hyprland-plugins/issues/164
|
||||
# ./hyprexpo.nix
|
||||
# ./Hyprspace.nix
|
||||
./inputs.nix
|
||||
./style.nix
|
||||
];
|
||||
|
|
|
@ -29,10 +29,6 @@ in {
|
|||
'';
|
||||
};
|
||||
in {
|
||||
imports = [
|
||||
hypridle.homeManagerModules.default
|
||||
];
|
||||
|
||||
home.packages = [
|
||||
pkgs.gnome.seahorse
|
||||
lockPkg
|
||||
|
@ -40,7 +36,7 @@ in {
|
|||
|
||||
services.hypridle = mkIf isLaptop {
|
||||
enable = true;
|
||||
lockCmd = "${lockPkg}/bin/lock";
|
||||
settings.lockCmd = "${lockPkg}/bin/lock";
|
||||
};
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue