nix-config/nixos/_mixins/services/maestral.nix

9 lines
171 B
Nix
Raw Permalink Normal View History

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