summary refs log tree commit diff
path: root/nixos/modules/virtualisation/lxcfs.nix
blob: 48462dc66da84c261e6447070e2461437dcdef4c (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# LXC Configuration

{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.virtualisation.lxc.lxcfs;
in {
  meta.maintainers = [ maintainers.mic92 ];

  ###### interface
  options.virtualisation.lxc.lxcfs = {
    enable =
      mkOption {
        type = types.bool;
        default = false;
        description = ''
          This enables LXCFS, a FUSE filesystem for LXC.
          To use lxcfs in include the following configuration in your
          container configuration:
          <code>
            virtualisation.lxc.defaultConfig = "lxc.include = ''${pkgs.lxcfs}/share/lxc/config/common.conf.d/00-lxcfs.conf";
          </code>
        '';
      };
  };

  ###### implementation
  config = mkIf cfg.enable {
    services.cgmanager.enable = true;

    systemd.services.lxcfs = {
      description = "FUSE filesystem for LXC";
      wantedBy = [ "multi-user.target" ];
      requires = [ "cgmanager.service" ];
      after = [ "cgmanager.service" ];
      before = [ "lxc.service" ];
      restartIfChanged = false;
      serviceConfig = {
        ExecStartPre="${pkgs.coreutils}/bin/mkdir -p /var/lib/lxcfs";
        ExecStart="${pkgs.lxcfs}/bin/lxcfs /var/lib/lxcfs";
        ExecStopPost="-${pkgs.fuse}/bin/fusermount -u /var/lib/lxcfs";
        KillMode="process";
        Restart="on-failure";
      };
    };
  };
}