dot.nix/hosts/common/optional/hyprland/default.nix
Chris Toph a2c2b26da2 Hyprland Config Refactor:
- Removed flake inputs everywhere, git flakes always broke. Idk what those bitches doing
- Moved Rules and Plugins to their own files
- Reworked binds to use a script and not the shitty nix implementation
- Installed and setup Hyprscroller
- Some Theming with colors and wallpaper with hyprpaper
2025-03-31 12:32:30 -04:00

19 lines
279 B
Nix

{
inputs,
pkgs,
lib,
...
}:
{
imports = lib.custom.scanPaths ./.;
programs.hyprland = {
enable = true;
# withUWSM = true; # One day, but not today
};
environment.systemPackages = [
inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default
];
}