mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 13:50:32 +01:00
68 lines
1.7 KiB
Nix
68 lines
1.7 KiB
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
inputs,
|
||
|
...
|
||
|
}: {
|
||
|
wayland.windowManager.hyprland = {
|
||
|
enable = true;
|
||
|
package = pkgs.hyprland;
|
||
|
|
||
|
#xwayland.enable = true;
|
||
|
|
||
|
#enableNvidiaPatches = true;
|
||
|
extraConfig = builtins.readFile ../config-files/hyprland.conf;
|
||
|
};
|
||
|
|
||
|
programs.waybar = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
mainBar = {
|
||
|
layer = "top";
|
||
|
position = "top";
|
||
|
height = 30;
|
||
|
modules-left = ["hyprland/workspaces"];
|
||
|
#modules-center = [ "hyprland/window" ];
|
||
|
modules-right = ["tray" "network" "battery" "battery#bat2" "clock"];
|
||
|
"tray" = {"icon-size" = 21;};
|
||
|
"network" = {
|
||
|
"format-wifi" = "NET: {essid} ({signalStrength}%) ";
|
||
|
"format-ethernet" = "{ifname} ";
|
||
|
"format-disconnected" = "";
|
||
|
"max-length" = 50;
|
||
|
};
|
||
|
"battery" = {
|
||
|
"bat" = "BAT0";
|
||
|
"interval" = 10;
|
||
|
"states" = {
|
||
|
"warning" = 30;
|
||
|
"critical" = 15;
|
||
|
};
|
||
|
"format" = " BAT IN: {capacity}%";
|
||
|
#"format-icons" = ''["", "", "", "", ""]'';
|
||
|
"max-length" = 25;
|
||
|
};
|
||
|
"battery#bat2" = {
|
||
|
"bat" = "BAT1";
|
||
|
"interval" = 10;
|
||
|
"states" = {
|
||
|
"warning" = 30;
|
||
|
"critical" = 15;
|
||
|
};
|
||
|
"format" = " BAT EX: {capacity}%";
|
||
|
#"format-icons" = ''["", "", "", "", ""]'';
|
||
|
"max-length" = 25;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
style = builtins.readFile ../config-files/waybar-mocha.css;
|
||
|
};
|
||
|
|
||
|
services.mako = {
|
||
|
enable = true;
|
||
|
font = "Hack Nerd Font 15";
|
||
|
backgroundColor = "#1e1e2e";
|
||
|
textColor = "#cdd6f4";
|
||
|
};
|
||
|
}
|