Sravan Balaji cf7abb3e89 Doom Emacs w/ Personal Config
- 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
2024-03-28 15:40:33 -04:00

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";
}