event-sim/nixos/configs/desktop-i3.nix
fly 02e1fad297 Initial commit
Signed-off-by: fly <merspieler@alwaysdata.com>
2024-05-31 11:47:34 +00:00

18 lines
307 B
Nix

{ config, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver.enable = true;
services.xserver.windowManager.i3.enable = true;
environment.systemPackages = with pkgs; [
i3blocks
i3lock
playerctl
xkblayout-state
gnome.gnome-terminal
dconf
pango
sysstat # for mpstat
];
}