mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 18:30:46 +02:00
18 lines
229 B
Nix
18 lines
229 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
pkgs-unstable,
|
|
...
|
|
}:
|
|
|
|
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
"qtbatticon" # custom battery tray
|
|
];
|
|
monitor = [
|
|
"eDP-1, highres@highrr, 0x0, 1"
|
|
];
|
|
};
|
|
}
|