nixos/home/gyroflow/home.nix

9 lines
148 B
Nix
Raw Normal View History

2024-01-10 23:49:00 +08:00
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.gyroflow;
in mkIf cfg.enable {
home.packages = with pkgs; [ gyroflow ];
2024-01-10 23:49:00 +08:00
}