mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
17 lines
288 B
Nix
17 lines
288 B
Nix
{pkgs, ...}: {
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager = {
|
|
defaultSession = "none+i3";
|
|
};
|
|
windowManager.i3 = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [
|
|
dmenu
|
|
i3status
|
|
i3lock
|
|
i3blocks
|
|
];
|
|
};
|
|
};
|
|
}
|