{ outputs, options, config, lib, pkgs, ...}: let cfg = config.modules.desktop.hyprland; in { options.modules.desktop.hyprland = { enable = lib.mkEnableOption false; }; config = lib.mkIf cfg.enable { services.greetd = { enable = true; }; services.xserver = { enable = true; # displayManager = { # # lightdm = { # # enable = true; # # background = ../../../config/background.png; # # greeters.gtk = { # # enable = true; # # theme = { # # name = "vimix-dark-ruby"; # # package = pkgs.vimix-gtk-themes; # # }; # # }; # # }; # gdm = { # enable = true; # }; # }; libinput = { enable = true; # no mouse accel mouse = { accelProfile = "flat"; }; # no touchpad accel touchpad = { accelProfile = "flat"; }; }; }; users.users.sako.packages = with pkgs; [ # use wayland counterparts wofi rofi-wayland # network networkmanagerapplet # brightness # TODO(sako):: find one for wayland # gtk vimix-gtk-themes vimix-icon-theme lxappearance catppuccin-cursors.mochaDark # screenshot grim flameshot # todo figure this out gamescope ]; environment.systemPackages = with pkgs; [ # bg hyprpaper # bar (waybar.overrideAttrs (oldAttrs: { mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true "]; })) # lock swaylock eww-wayland ags brightnessctl inotify-tools ]; programs.hyprland = { enable = true; }; home-manager.users.sako = { pkgs , ...}: { home.pointerCursor = { name = "Catppuccin-Mocha-Dark"; size = 16; x11 = { enable = true; }; gtk.enable = true; package = pkgs.catppuccin-cursors.mochaDark; }; gtk = { enable = true; theme.name = "vimix-dark-ruby"; iconTheme.name = "Vimix Ruby Dark"; }; home.file = { "background.png" = { enable = true; source = ../../../config/background.png; }; }; xdg.configFile = { hypr = { source = ../../../config/hyprland; recursive = true; }; waybar = { source = ../../../config/waybar; recursive = true; }; swaylock = { source = ../../../config/swaylock; recursive = true; }; }; }; # swaylock doesnt work without this security.pam.services.swaylock.text = '' # PAM configuration file for the swaylock screen locker. By default, it includes # the 'login' configuration file (see /etc/pam.d/login) auth include login ''; }; }