- 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
13 lines
189 B
Nix
13 lines
189 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./3d-printing.nix
|
|
./bootable-media.nix
|
|
./file-syncing.nix
|
|
./keyboard-configuration.nix
|
|
./passwords.nix
|
|
./xdg.nix
|
|
];
|
|
}
|