From ed87c8bd4697392b10d3df332ceee8a2796bee50 Mon Sep 17 00:00:00 2001 From: gytic <149968794+gytic@users.noreply.github.com> Date: Sun, 27 Jul 2025 01:29:16 +0200 Subject: [PATCH] config: migrate to new config options 1. enable pipe-operators 2. reapply the correct taskbar applications 3. disable battery plugin --- .../Hosts/Default/configuration.nix | 31 +++++++++++++++++++ Modules/System/common.nix | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/Configurations/Hosts/Default/configuration.nix b/Configurations/Hosts/Default/configuration.nix index 197a190..733ce59 100644 --- a/Configurations/Hosts/Default/configuration.nix +++ b/Configurations/Hosts/Default/configuration.nix @@ -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"; + } + ]; + }; }; ################################################################ diff --git a/Modules/System/common.nix b/Modules/System/common.nix index dde1865..c5c7661 100644 --- a/Modules/System/common.nix +++ b/Modules/System/common.nix @@ -39,7 +39,7 @@ 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; console.keyMap = "de";