feat(home): add trayscale
This commit is contained in:
parent
8252e62c0c
commit
e60d1ebeb0
|
@ -3,6 +3,7 @@
|
||||||
with pkgs; {
|
with pkgs; {
|
||||||
imports = [
|
imports = [
|
||||||
./shell
|
./shell
|
||||||
|
./tailscale.nix
|
||||||
./editors
|
./editors
|
||||||
./desktop
|
./desktop
|
||||||
./git.nix
|
./git.nix
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./shell
|
./shell
|
||||||
|
./tailscale.nix
|
||||||
./editors
|
./editors
|
||||||
./desktop
|
./desktop
|
||||||
./desktop/monitors.nix
|
./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