mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
21 lines
344 B
Nix
21 lines
344 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# import X11
|
|
imports = [ ./x11.nix
|
|
./pipewire.nix
|
|
./dbus.nix
|
|
];
|
|
|
|
# Setup XMonad
|
|
services.xserver = {
|
|
windowManager.xmonad = {
|
|
enable = true;
|
|
enableContribAndExtras = true;
|
|
};
|
|
displayManager = {
|
|
defaultSession = "none+xmonad";
|
|
};
|
|
};
|
|
}
|