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