35 lines
747 B
Nix
35 lines
747 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ hyprland ];
|
|
programs.hyprpanel = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
programs.fuzzel.enable = true;
|
|
|
|
# wayland.windowManager.hyprland = {
|
|
# enable = true;
|
|
|
|
# settings = {
|
|
# "$qsConfig" = "ii";
|
|
|
|
# exec =
|
|
# "hyprctl dispatch submap global"; # DO NOT REMOVE THIS OR YOU WON'T BE ABLE TO USE ANY KEYBIND
|
|
# submap = "global"; # Required for catchall to work
|
|
|
|
# debug = { disable_logs = false; };
|
|
# };
|
|
# };
|
|
|
|
# imports = [
|
|
# ./hyprland/env.nix
|
|
# ./hyprland/execs.nix
|
|
# ./hyprland/general.nix
|
|
# ./hyprland/rules.nix
|
|
# ./hyprland/colors.nix
|
|
# ./hyprland/keybinds.nix
|
|
# ./hyprland/active.nix
|
|
# ];
|
|
}
|