nix-config/nixos/_mixins/services/maestral.nix
Gregory Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

9 lines
171 B
Nix

{ desktop, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
unstable.maestral
] ++ lib.optionals (desktop != null) [
unstable.maestral-gui
];
}