- Update flake.lock - Add doom emacs nix module to flake - Change default editor to doom emacs - Move xdg configuration to a separate file - Change user home filepaths to use `~` - Install doom emacs by default - Add personal doom emacs configuration
28 lines
497 B
Nix
28 lines
497 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./default.nix
|
|
./lightdm.nix
|
|
./x11.nix
|
|
];
|
|
|
|
services.xserver.windowManager.dwm = {
|
|
enable = true;
|
|
package = pkgs.dwm.overrideAttrs {
|
|
src = ~/.config/dwm-flexipatch;
|
|
buildInputs = with pkgs; [
|
|
xorg.libX11.dev
|
|
xorg.libXinerama
|
|
xorg.libXft
|
|
xorg.libxcb
|
|
xorg.xcbutil
|
|
yajl
|
|
jsoncpp
|
|
];
|
|
};
|
|
};
|
|
|
|
services.xserver.displayManager.defaultSession = "none+dwm";
|
|
}
|