hyprland: move from module to user config

This commit is contained in:
2025-03-16 15:21:55 +00:00
parent 2b76dbea66
commit 7cd825d938
4 changed files with 32 additions and 52 deletions

View File

@ -0,0 +1,32 @@
{
pkgs,
...
}:
{
programs.hyprland = {
enable = true;
# withUWSM = true;
};
# programs.uwsm.enable = true;
networking.networkmanager.enable = true;
home.packages = with pkgs.unstable; [
anyrun
clipse
dunst
hyprpaper
kitty
mpv
waybar
wl-clipboard
];
environment.systemPackages = with pkgs; [
adw-gtk3
];
home.services.gpg-agent.pinentryPackage = pkgs.pinentry-gnome3;
}