first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
17
modules/core/xserver.nix
Normal file
17
modules/core/xserver.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, ... }: {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
layout = "us";
|
||||
videoDrivers = [ "amdgpu" ];
|
||||
displayManager.autoLogin = {
|
||||
enable = true;
|
||||
user = "frostphoenix";
|
||||
};
|
||||
libinput = {
|
||||
enable = true;
|
||||
mouse = {
|
||||
accelProfile = "flat";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue