mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
58 lines
1.6 KiB
Nix
58 lines
1.6 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.polybar = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
script = "polybar bar &";
|
|
config = {
|
|
"bar/top" = {
|
|
monitor = "\${env:MONITOR:eDP1}";
|
|
width = "100%";
|
|
height = "3%";
|
|
radius = 0;
|
|
modules-center = "date";
|
|
};
|
|
"module/date" = {
|
|
type = "internal/date";
|
|
internal = 5;
|
|
date = "%d.%m.%y";
|
|
time = "%H:%M";
|
|
label = "%time% %date%";
|
|
};
|
|
};
|
|
settings = {
|
|
"module/volume" = {
|
|
type = "internal/pulseaudio";
|
|
format.volume = "<ramp-volume> <label-volume>";
|
|
label.muted.text = "🔇";
|
|
label.muted.foreground = "#666";
|
|
ramp.volume = [ "🔈" "🔉" "🔊" ];
|
|
click.right = "pavucontrol &";
|
|
};
|
|
};
|
|
extraConfig = ''
|
|
[module/date]
|
|
type = internal/date
|
|
interval = 5
|
|
date = "%d.%m.%y"
|
|
time = %H:%M
|
|
format-prefix-foreground = ''${colors.foreground-alt}
|
|
label = %time% %date%
|
|
'';
|
|
};
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/polybar.service
|
|
|
|
assertFileExists $serviceFile
|
|
assertFileRegex $serviceFile 'X-Restart-Triggers=.*polybar\.conf'
|
|
assertFileRegex $serviceFile 'ExecStart=.*/bin/polybar-start'
|
|
|
|
assertFileExists home-files/.config/polybar/config
|
|
assertFileContent home-files/.config/polybar/config \
|
|
${./basic-configuration.conf}
|
|
'';
|
|
};
|
|
}
|