16 lines
184 B
Nix
16 lines
184 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [./global.nix ./x11.nix];
|
||
|
|
||
|
services = {
|
||
|
xserver = {
|
||
|
# dpi = 180;
|
||
|
windowManager.awesome.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|