config: migrate to new config options

1. enable pipe-operators
2. reapply the correct taskbar applications
3. disable battery plugin
This commit is contained in:
gytic 2025-07-27 01:29:16 +02:00
parent ddcb125ee3
commit ed87c8bd46
2 changed files with 32 additions and 1 deletions

View file

@ -34,6 +34,37 @@ in {
nixos95 = {
enable = true;
user = username;
taskbar = {
homeIcon = "whisker-menu-button";
battery-plugin.enable = false;
applications = [
{
name = "Brave";
description = "Browse the Web";
pkg = pkgs.brave;
icon = "world";
}
{
name = "Signal";
description = "Private Messenger";
pkg = pkgs.signal-desktop;
icon = "signal";
}
{
name = "Obsidian";
description = "Markdown Editor";
exe = "obsidian %u";
icon = "obsidian";
}
{
name = "Spotify";
description = "Spotify Music";
exe = "spotify %U";
icon = "spotify";
}
];
};
};
################################################################