13 lines
216 B
Nix
13 lines
216 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
trayscale
|
||
|
(pkgs.makeAutostartItem {
|
||
|
name = "dev.deedles.Trayscale";
|
||
|
package = pkgs.trayscale;
|
||
|
# extraArgs = ["--hide-window"];
|
||
|
})
|
||
|
];
|
||
|
}
|