mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
12 lines
338 B
Nix
12 lines
338 B
Nix
{ self, lib, config, ... }:
|
|
{
|
|
options.swarselmodules.server.dotfiles = lib.mkEnableOption "server dotfiles settings";
|
|
config = lib.mkIf config.swarselmodules.server.dotfiles {
|
|
home.file = {
|
|
"init.el" = lib.mkForce {
|
|
source = self + /files/emacs/server.el;
|
|
target = ".emacs.d/init.el";
|
|
};
|
|
};
|
|
};
|
|
}
|