try hyprpanel

This commit is contained in:
2025-08-24 09:08:22 -05:00
parent aa4528b70a
commit e0d552d309
4 changed files with 9 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
./git ./git
./nh ./nh
./hyprland ./hyprland
./hyprpanel
./terminal ./terminal
./rofi ./rofi
./pywal ./pywal

View File

@@ -33,6 +33,10 @@
exec-once=hyprctl output create headless HEADLESS-2 exec-once=hyprctl output create headless HEADLESS-2
exec-once=hyprctl keyword monitor HDMI-A-2,disable exec-once=hyprctl keyword monitor HDMI-A-2,disable
exec-once=${pkgs.wayvnc}/bin/wayvnc 0.0.0.0 -o HEADLESS-2 exec-once=${pkgs.wayvnc}/bin/wayvnc 0.0.0.0 -o HEADLESS-2
'' else if config.homeconfig.host == "container" then ''
monitor=HEADLESS-2,1920x1080@60,0x0,1
exec-once=hyprctl output create headless HEADLESS-2
exec-once=${pkgs.wayvnc}/bin/wayvnc 0.0.0.0 -o HEADLESS-2
'' else ''''; '' else '''';
in monitor + '' in monitor + ''
source = /home/nathan/.config/hypr/main.conf source = /home/nathan/.config/hypr/main.conf

View File

@@ -1,6 +1,6 @@
{ config, lib, ... }: { { config, lib, ... }: {
options.homeconfig.hyprpanel.enable = lib.mkOption { options.homeconfig.hyprpanel.enable = with lib; mkOption {
type = with types; bool; type = with types; bool;
default = false; default = false;
}; };

View File

@@ -84,7 +84,8 @@
swaylock.enable = true; swaylock.enable = true;
wal.enable = true; wal.enable = true;
mpd.enable = true; mpd.enable = true;
ags.enable = true; ags.enable = false;
hyprpanel.enable = true;
calcurse.enable = true; calcurse.enable = true;
rofi.enable = true; rofi.enable = true;
firefox.enable = true; firefox.enable = true;
@@ -108,7 +109,7 @@
programs = { programs = {
steam.enable = true; steam.enable = true;
ags.enable = true; ags.enable = false;
hyprland.enable = true; hyprland.enable = true;
}; };