initial commit
This commit is contained in:
commit
90cff4f16a
59 changed files with 6855 additions and 0 deletions
54
Hyprsuck/hyprland/hyprland.nix
Normal file
54
Hyprsuck/hyprland/hyprland.nix
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# Hyprland ecosystem configuration (stable packages)
|
||||
# Core hyprland WM and hypr* tools only
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./bindings.nix
|
||||
./settings.nix
|
||||
./monitors.nix
|
||||
./rules.nix
|
||||
./hyprlock.nix
|
||||
./hypridle.nix
|
||||
./hyprpaper.nix
|
||||
];
|
||||
|
||||
# ============================================================================
|
||||
# Hyprland Window Manager (home-manager config)
|
||||
# ============================================================================
|
||||
# Package/portal set at NixOS level in hyprsuck.nix
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
};
|
||||
|
||||
# ============================================================================
|
||||
# Hyprland ecosystem packages (stable)
|
||||
# ============================================================================
|
||||
home.packages = with pkgs; [
|
||||
# Tablet mode
|
||||
iio-hyprland
|
||||
|
||||
# Monitor hotplug
|
||||
hyprland-monitor-attached
|
||||
];
|
||||
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
exec-once = [
|
||||
"iio-hyprland"
|
||||
"hyprland-monitor-attached"
|
||||
];
|
||||
};
|
||||
|
||||
# Polkit authentication agent
|
||||
services.hyprpolkitagent = {
|
||||
enable = true;
|
||||
package = pkgs.hyprpolkitagent;
|
||||
};
|
||||
|
||||
# Blue light filter
|
||||
services.hyprsunset = {
|
||||
enable = true;
|
||||
package = pkgs.hyprsunset;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue