dotfiles/modules/desktop/i3.nix

13 lines
246 B
Nix
Raw Normal View History

2022-04-29 02:12:16 +00:00
{ pkgs, ... }: {
2022-04-29 01:56:21 +00:00
services.xserver.windowManager = { i3 = { enable = true; }; };
2022-04-29 02:12:16 +00:00
environment.systemPackages = with pkgs; [
dmenu # Launcher
feh # Wallpaper
playerctl # Media control
polybarFull # Polybar + PulseAudio
];
2022-04-29 01:56:21 +00:00
}