9 lines
148 B
Nix
9 lines
148 B
Nix
{ pkgs
|
|
, lib
|
|
, config
|
|
, ... }: with lib; let
|
|
cfg = config.passthrough.gyroflow;
|
|
in mkIf cfg.enable {
|
|
home.packages = with pkgs; [ gyroflow ];
|
|
}
|