initial commit

This commit is contained in:
GammaKinematics 2026-03-30 13:10:42 +07:00
commit 90cff4f16a
59 changed files with 6855 additions and 0 deletions

23
Hyprsuck/hyprsuck.nix Normal file
View file

@ -0,0 +1,23 @@
# Hyprsuck configuration entry point
# Wayland compositor setup with Hyprland
{ pkgs, ... }:
{
# ============================================================================
# Hyprland - NixOS level config
# ============================================================================
programs.hyprland = {
enable = true;
package = pkgs.hyprland;
portalPackage = pkgs.xdg-desktop-portal-hyprland;
xwayland.enable = true;
};
environment.systemPackages = with pkgs; [
# Screenshot tool for Hyprland
grimblast
# Tablet mode
wvkbd
];
}