2023-08-03 10:37:36 +01:00
|
|
|
{ pkgs, ... }: {
|
2023-07-10 11:24:42 +01:00
|
|
|
home.packages = with pkgs; [
|
2023-08-03 10:37:36 +01:00
|
|
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
2023-07-10 11:24:42 +01:00
|
|
|
networkmanagerapplet
|
|
|
|
bluez
|
|
|
|
];
|
|
|
|
programs.waybar = {
|
|
|
|
enable = true;
|
|
|
|
style = ./style.css;
|
2023-07-13 12:41:00 +01:00
|
|
|
settings.main = {
|
|
|
|
layer = "top";
|
|
|
|
position = "top";
|
2023-08-03 10:37:36 +01:00
|
|
|
"modules-left" = [ "wlr/workspaces" ];
|
|
|
|
"modules-center" = [ "mpris" ];
|
2023-07-13 12:41:00 +01:00
|
|
|
"modules-right" = [
|
|
|
|
"pulseaudio"
|
|
|
|
"bluetooth"
|
|
|
|
"network"
|
|
|
|
"backlight"
|
|
|
|
"battery"
|
|
|
|
"tray"
|
|
|
|
"clock"
|
|
|
|
];
|
|
|
|
"wlr/workspaces" = import ./modules/wlr_workspaces.nix;
|
2023-08-03 10:37:36 +01:00
|
|
|
mpris = import ./modules/mpris.nix;
|
2023-07-13 12:41:00 +01:00
|
|
|
cpu = import ./modules/cpu.nix;
|
|
|
|
memory = import ./modules/memory.nix;
|
|
|
|
temperature = import ./modules/temperature.nix;
|
2023-07-18 16:24:27 +01:00
|
|
|
clock = import ./modules/clock.nix;
|
2023-07-13 12:41:00 +01:00
|
|
|
pulseaudio = import ./modules/pulseaudio.nix;
|
|
|
|
bluetooth = import ./modules/bluetooth.compact.nix;
|
|
|
|
network = import ./modules/network.compact.nix;
|
|
|
|
backlight = import ./modules/backlight.nix;
|
|
|
|
battery = import ./modules/battery.compact.nix;
|
|
|
|
tray = import ./modules/tray.nix;
|
|
|
|
};
|
2023-07-10 11:24:42 +01:00
|
|
|
};
|
|
|
|
}
|