summaryrefslogtreecommitdiffstats
path: root/tv/2configs/xserver/xserver.conf.nix
blob: 6f34e0150e69386a7ffc4b6baca61af235206c9b (plain)
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
{ config, lib, pkgs, ... }:

with import <stockholm/lib>;

let
  cfg = config.services.xserver;
in

pkgs.stdenv.mkDerivation {
  name = "xserver.conf";

  xfs = optionalString (cfg.useXFS != false)
    ''FontPath "${toString cfg.useXFS}"'';

  inherit (cfg) config;

  buildCommand =
    ''
      echo 'Section "Files"' >> $out
      echo $xfs >> $out

      for i in ${toString config.fonts.fonts}; do
        if test "''${i:0:''${#NIX_STORE}}" == "$NIX_STORE"; then
          for j in $(find $i -name fonts.dir); do
            echo "  FontPath \"$(dirname $j)\"" >> $out
          done
        fi
      done

      for i in $(find ${toString cfg.modules} -type d); do
        if test $(echo $i/*.so* | wc -w) -ne 0; then
          echo "  ModulePath \"$i\"" >> $out
        fi
      done

      echo 'EndSection' >> $out

      echo "$config" >> $out
    '';
}