* Style fix.

svn path=/nixos/trunk/; revision=26140
This commit is contained in:
Eelco Dolstra 2011-03-03 12:00:54 +00:00
parent 08426fb717
commit c31c4290cc

View File

@ -55,9 +55,8 @@ in
setuid = true; setuid = true;
} ]; } ];
environment = { environment.systemPackages =
systemPackages = [ [ # temporary workarounds
# temporary workarounds
pkgs.shared_desktop_ontologies pkgs.shared_desktop_ontologies
pkgs.strigi pkgs.strigi
@ -76,13 +75,13 @@ in
xorg.xset # used by startkde, non-essential xorg.xset # used by startkde, non-essential
] ++ config.environment.kdePackages; ] ++ config.environment.kdePackages;
pathsToLink = [ "/share" ]; environment.pathsToLink = [ "/share" ];
etc = singleton environment.etc = singleton
{ source = "${pkgs.xkeyboard_config}/etc/X11/xkb"; { source = "${pkgs.xkeyboard_config}/etc/X11/xkb";
target = "X11/xkb"; target = "X11/xkb";
}; };
};
}; };
} }