mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
14 lines
252 B
Nix
14 lines
252 B
Nix
{ config, pkgs, ... }: {
|
|
services.xserver = {
|
|
enable = true;
|
|
autorun = false;
|
|
exportConfiguration = true;
|
|
displayManager.startx.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
xorg.xinit
|
|
xsel
|
|
scrot
|
|
];
|
|
}
|