diff options
author | lassulus <lass@lassul.us> | 2017-02-16 00:05:38 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-02-16 00:08:05 +0100 |
commit | 679ccce6bd5feef4edd7533a67536836f7b7aa26 (patch) | |
tree | f465e04433f875e6c6093a88d562a6d63ce14ceb /lass/2configs/xserver/xserver.conf.nix | |
parent | 1b5196f4fdc8dc32fb771d518f08a769329b5fd9 (diff) |
l 2: use upstream xserver
Diffstat (limited to 'lass/2configs/xserver/xserver.conf.nix')
-rw-r--r-- | lass/2configs/xserver/xserver.conf.nix | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/lass/2configs/xserver/xserver.conf.nix b/lass/2configs/xserver/xserver.conf.nix deleted file mode 100644 index 6f34e0150..000000000 --- a/lass/2configs/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 - ''; -} |