Add vesc-tool

This commit is contained in:
Jakob Lechner 2024-07-04 16:14:01 +02:00
parent e180a20b7d
commit 547b2e8601
2 changed files with 6 additions and 0 deletions

View file

@ -37,5 +37,6 @@
./tmux.nix
./tor-browser.nix
./vdirsyncer.nix
./vesc-tool.nix
];
}

View file

@ -0,0 +1,5 @@
{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.gui.enable {
home.packages = with pkgs; [ vesc-tool ];
}