dotfiles-nixos/nixos/modules/xmonad.nix

14 lines
308 B
Nix
Raw Normal View History

2023-06-20 17:10:32 +00:00
{ config, lib, pkgs, ... }:
{
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
# Define the i3 window manager configuration
services.xserver = {
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
};
}