multiple updates

This commit is contained in:
2025-11-18 04:22:01 +03:00
parent 1c3787a3d6
commit ccc2cdab20
10 changed files with 68 additions and 212 deletions
-1
View File
@@ -1 +0,0 @@
# TODO
+19 -1
View File
@@ -1,13 +1,31 @@
{ config, pkgs, ... }:
# TODO:
# - make shortcuts for hyprctl commands
# - split into multiple files
# - configure comands like hyprpaper, waybar, etc.
{
home.packages = with pkgs; [ hyprland ];
home.packages = with pkgs; [
hyprland # already in nixos modules, but here for hyprctl
brightnessctl
];
programs.hyprpanel = {
enable = true;
systemd.enable = true;
};
programs.fuzzel.enable = true;
wayland.windowManager.hyprland.settings = {
exec-once = [
# Fixes cursor themes in gnome apps under hyprland
"gsettings set org.gnome.desktop.interface cursor-theme '${config.home.pointerCursor.name}'"
"gsettings set org.gnome.desktop.interface cursor-size ${
toString config.home.pointerCursor.size
}"
];
};
# wayland.windowManager.hyprland = {
# enable = true;