Taskbar #3

Merged
krauterbaquette merged 3 commits from taskbar into Dev 2025-07-28 08:17:47 +02:00
2 changed files with 32 additions and 1 deletions
Showing only changes of commit ed87c8bd46 - Show all commits

View file

@ -34,6 +34,37 @@ in {
nixos95 = { nixos95 = {
enable = true; enable = true;
user = username; 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";
}
];
};
}; };
################################################################ ################################################################

View file

@ -39,7 +39,7 @@
LC_TIME = "de_DE.UTF-8"; LC_TIME = "de_DE.UTF-8";
}; };
nix.settings.experimental-features = ["nix-command" "flakes"]; nix.settings.experimental-features = ["nix-command" "flakes" "pipe-operators"];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
console.keyMap = "de"; console.keyMap = "de";