Jordan Holt 70a8af6395
All checks were successful
Check flake / build-amd64-linux (push) Successful in 4m16s
hyprland: add clipse, kitty
2025-03-15 23:07:20 +00:00

50 lines
747 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib)
mkIf
mkOption
;
cfg = config.modules.system.desktop.hyprland;
in
{
options.modules.system.desktop.hyprland = {
enable = mkOption {
default = false;
example = true;
};
};
config = mkIf cfg.enable {
programs.hyprland = {
enable = true;
# withUWSM = true;
};
# programs.uwsm.enable = true;
networking.networkmanager.enable = true;
user.packages = with pkgs.unstable; [
anyrun
clipse
hyprpaper
kitty
mpv
waybar
wl-clipboard
];
environment.systemPackages = with pkgs; [
adw-gtk3
];
home.services.gpg-agent.pinentryPackage = pkgs.pinentry-gnome3;
};
}