diff options
author | makefu <github@syntax-fehler.de> | 2019-01-03 22:55:53 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-01-03 22:55:53 +0100 |
commit | 4715e28304fc2396dbe9331c3824fb4de29a0d84 (patch) | |
tree | 685bb65138f417f9cc84bfef67afe85181da1615 /lass/3modules/xserver/xserver.conf.nix | |
parent | fa117593ada626b12f81b98c478fdb21ab36bc89 (diff) | |
parent | 2ce824f21f933710ef9f36864e1e585644da6eb5 (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lass/3modules/xserver/xserver.conf.nix')
-rw-r--r-- | lass/3modules/xserver/xserver.conf.nix | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/lass/3modules/xserver/xserver.conf.nix b/lass/3modules/xserver/xserver.conf.nix deleted file mode 100644 index 6f34e0150..000000000 --- a/lass/3modules/xserver/xserver.conf.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ 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 - ''; -} |