ooknet/nixos/modules/base/services/gvfs.nix

12 lines
166 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf;
host = config.ooknet.host;
in
{
config = mkIf ( host.type != "phone") {
services.gvfs.enable = true;
};
}