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