treewide: use attrs instead of list for types.loaOf options
This commit is contained in:
@@ -198,12 +198,13 @@ in {
|
||||
|
||||
environment.systemPackages = [ pkgs.xorg.xf86inputlibinput ];
|
||||
|
||||
environment.etc = [
|
||||
(let cfgPath = "X11/xorg.conf.d/40-libinput.conf"; in {
|
||||
source = pkgs.xorg.xf86inputlibinput.out + "/share/" + cfgPath;
|
||||
target = cfgPath;
|
||||
})
|
||||
];
|
||||
environment.etc =
|
||||
let cfgPath = "X11/xorg.conf.d/40-libinput.conf";
|
||||
in {
|
||||
${cfgPath} = {
|
||||
source = pkgs.xorg.xf86inputlibinput.out + "/share/" + cfgPath;
|
||||
};
|
||||
};
|
||||
|
||||
services.udev.packages = [ pkgs.libinput.out ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user