mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
33 lines
897 B
Nix
33 lines
897 B
Nix
{ lib, config, ... }:
|
|
let
|
|
generateIcons = n: lib.concatStringsSep " " (builtins.map (x: "{icon" + toString x + "}") (lib.range 0 (n - 1)));
|
|
in
|
|
{
|
|
options.swarselsystems.cpuString = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = generateIcons config.swarselsystems.cpuCount;
|
|
description = "The generated icons string for use by Waybar.";
|
|
internal = true;
|
|
};
|
|
options.swarselsystems.waybarModules = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [
|
|
"custom/outer-left-arrow-dark"
|
|
"mpris"
|
|
"custom/left-arrow-light"
|
|
"network"
|
|
"custom/vpn"
|
|
"custom/left-arrow-dark"
|
|
"pulseaudio"
|
|
"custom/left-arrow-light"
|
|
"custom/pseudobat"
|
|
"battery"
|
|
"custom/left-arrow-dark"
|
|
"group/hardware"
|
|
"custom/left-arrow-light"
|
|
"clock#2"
|
|
"custom/left-arrow-dark"
|
|
"clock#1"
|
|
];
|
|
};
|
|
}
|