19 lines
250 B
Nix
19 lines
250 B
Nix
|
{ lib, config, pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./polybar.nix
|
||
|
./gnupg.nix
|
||
|
./fonts.nix
|
||
|
./pulse.nix
|
||
|
];
|
||
|
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
libinput.enable = true;
|
||
|
layout = "us";
|
||
|
|
||
|
displayManager.sx.enable = true;
|
||
|
};
|
||
|
}
|