Refactor xserver service
This commit is contained in:
parent
add81a71d5
commit
89dff37210
|
@ -64,14 +64,6 @@
|
|||
qmk-udev-rules
|
||||
];
|
||||
|
||||
# Setup our display server.
|
||||
xserver = {
|
||||
enable = true;
|
||||
xkb.layout = "au";
|
||||
videoDrivers = [ "amdgpu" ];
|
||||
displayManager.startx.enable = true;
|
||||
};
|
||||
|
||||
libinput = {
|
||||
enable = true;
|
||||
mouse = { accelProfile = "flat"; };
|
||||
|
|
|
@ -4,5 +4,6 @@
|
|||
imports = [
|
||||
./amdgpu-clocks.nix
|
||||
./flatpak.nix
|
||||
./xserver.nix
|
||||
];
|
||||
}
|
||||
|
|
11
nixos/fuchsia/services/xserver.nix
Normal file
11
nixos/fuchsia/services/xserver.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
# Setup our display server
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
xkb.layout = "au";
|
||||
videoDrivers = [ "amdgpu" ];
|
||||
displayManager.startx.enable = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue