feat(home): add trayscale
This commit is contained in:
parent
8252e62c0c
commit
e60d1ebeb0
|
@ -3,6 +3,7 @@
|
|||
with pkgs; {
|
||||
imports = [
|
||||
./shell
|
||||
./tailscale.nix
|
||||
./editors
|
||||
./desktop
|
||||
./git.nix
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
./shell
|
||||
./tailscale.nix
|
||||
./editors
|
||||
./desktop
|
||||
./desktop/monitors.nix
|
||||
|
|
12
home/tailscale.nix
Normal file
12
home/tailscale.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
trayscale
|
||||
(pkgs.makeAutostartItem {
|
||||
name = "dev.deedles.Trayscale";
|
||||
package = pkgs.trayscale;
|
||||
# extraArgs = ["--hide-window"];
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue