dotfiles/modules/desktop/i3.nix
2022-04-28 22:55:42 -04:00

16 lines
301 B
Nix

{ pkgs, ... }: {
# Requires Xorg to work
imports = [ ./xorg.nix ];
services.xserver.windowManager = { i3 = { enable = true; }; };
environment.systemPackages = with pkgs; [
dmenu # Launcher
feh # Wallpaper
playerctl # Media control
polybarFull # Polybar + PulseAudio
];
}