Evie Litherland-Smith
2a42c14fb5
Switch remaining catppuccin to tokyonight, using stylix to generate GTK theme now Switch SDDM for LightDM (uses stylix theme), enable plymouth boot splashscreen Make Hyprland window rules (not launch binds) silent now
30 lines
1,010 B
Nix
30 lines
1,010 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [ networkmanagerapplet bluez ];
|
|
# stylix.targets.waybar.enable = false;
|
|
programs.waybar = {
|
|
enable = true;
|
|
# style = ./style.css;
|
|
systemd = {
|
|
enable = true;
|
|
target = "hyprland-session.target";
|
|
};
|
|
settings.main = {
|
|
layer = "top";
|
|
position = "top";
|
|
"modules-left" = [ "hyprland/workspaces" ];
|
|
"modules-center" = [ "mpris" ];
|
|
"modules-right" = [ "pulseaudio" "backlight" "battery" "tray" "clock" ];
|
|
"hyprland/workspaces" = import ./modules/hyprland_workspaces.nix;
|
|
mpris = import ./modules/mpris.nix;
|
|
cpu = import ./modules/cpu.nix;
|
|
memory = import ./modules/memory.nix;
|
|
temperature = import ./modules/temperature.nix;
|
|
clock = import ./modules/clock.nix;
|
|
pulseaudio = import ./modules/pulseaudio.nix;
|
|
backlight = import ./modules/backlight.nix;
|
|
battery = import ./modules/battery.compact.nix;
|
|
tray = import ./modules/tray.nix;
|
|
};
|
|
};
|
|
}
|