feat(home): add trayscale

This commit is contained in:
Felix Schröter 2024-01-30 20:40:31 +01:00
parent 8252e62c0c
commit e60d1ebeb0
Signed by: felschr
GPG key ID: 671E39E6744C807D
3 changed files with 14 additions and 0 deletions

View file

@ -3,6 +3,7 @@
with pkgs; {
imports = [
./shell
./tailscale.nix
./editors
./desktop
./git.nix

View file

@ -3,6 +3,7 @@
{
imports = [
./shell
./tailscale.nix
./editors
./desktop
./desktop/monitors.nix

12
home/tailscale.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
trayscale
(pkgs.makeAutostartItem {
name = "dev.deedles.Trayscale";
package = pkgs.trayscale;
# extraArgs = ["--hide-window"];
})
];
}