10 lines
188 B
Nix
10 lines
188 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ ./i3.nix ];
|
|
|
|
# Enable the X11 windowing system.
|
|
services.xserver.enable = true;
|
|
services.xserver.layout = "fr";
|
|
|
|
services.autorandr.enable = true;
|
|
}
|