mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 00:52:56 +00:00
13 lines
246 B
Nix
13 lines
246 B
Nix
{ pkgs, ... }: {
|
|
|
|
services.xserver.windowManager = { i3 = { enable = true; }; };
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dmenu # Launcher
|
|
feh # Wallpaper
|
|
playerctl # Media control
|
|
polybarFull # Polybar + PulseAudio
|
|
];
|
|
|
|
}
|