dotfiles/modules/desktop/i3.nix

16 lines
301 B
Nix
Raw Normal View History

2022-04-29 02:12:16 +00:00
{ pkgs, ... }: {
2022-04-29 01:56:21 +00:00
2022-04-29 02:55:42 +00:00
# Requires Xorg to work
imports = [ ./xorg.nix ];
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
}