dot.nix/hosts/common/optional/hyprland/default.nix
Chris Toph 1f6c90fa85 Refactor Hyprland Scripts:
- the script files are now actual scripts
- move the configs in them to their usual place
- Added some window rules sorta kinda not really related
2025-04-02 01:48:57 -04:00

20 lines
344 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
inputs.better-control.packages.${pkgs.system}.better-control
];
}