ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
{ config, lib, pkgs, ... }:

let
  cfg = config.ctucxConfig.services.gvfs;

in {

  options = {
    ctucxConfig.services.gvfs = {
      enable = lib.mkEnableOption "gvfs";
    };
  };

  config = lib.mkIf cfg.enable {
    services = {
      gvfs.enable  = true;
      gvfs.package = (pkgs.gvfs.overrideAttrs (old: {
        mesonFlags = (old.mesonFlags or []) ++ [
          "-Dafp=false"
          "-Dgphoto2=false"
        ];
      })).override {
        gnomeSupport = false;
        samba        = null;
      };
    };
  };

}