11 lines
191 B
Nix
11 lines
191 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
home.file.".config/polybar/config.ini".source = ./config.ini;
|
|
home.file.".config/polybar/launch.sh" = {
|
|
source = ./launch.sh;
|
|
executable = true;
|
|
};
|
|
|
|
}
|