Files
nixverse/nodes/hosts/lappy/home/jay/home.nix

23 lines
342 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
programs.hyprpanel = {
settings = {
layout = {
"bar.layouts" = {
"0" = {
right = [ "battery" ];
};
};
};
};
};
wayland.windowManager.hyprland = {
settings = {
"monitor" = "eDP-1, 2880x1800@120, 0x0, 1";
};
};
}