- 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
9 lines
133 B
Nix
9 lines
133 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.doom-emacs = {
|
|
enable = true;
|
|
doomPrivateDir = ~/.config/doom-emacs-config;
|
|
};
|
|
}
|