Generation 92 2024-04-21 15:03:33 (current)

This commit is contained in:
Jonas Röger 2024-04-21 15:03:34 +02:00
parent fe9078b379
commit e3e87c6b52
4 changed files with 16 additions and 0 deletions

View File

@ -64,6 +64,9 @@ in {
xdg = { xdg = {
enable = true; enable = true;
configFile = { configFile = {
"doom-config/splash.png" = {
source = ./static/doom-config/splash.png;
};
"doom-config/config.el" = { "doom-config/config.el" = {
source = ./static/doom-config/config.el; source = ./static/doom-config/config.el;
}; };
@ -83,6 +86,17 @@ in {
onChange = "${doom-setup} --force sync -u"; onChange = "${doom-setup} --force sync -u";
}; };
}; };
desktopEntries = {
doom = {
name = "Doom Emacs";
genericName = "Text Editor";
icon = ./static/doom-config/icon.png;
exec = "${wrapped-emacs}/bin/emacs %U";
terminal = false;
categories = ["Application" "Development"];
mimeType = ["text/*"];
};
};
}; };
home.packages = doom-pkgs; home.packages = doom-pkgs;
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

View File

@ -193,3 +193,5 @@
:config :config
;;literate ;;literate
(default +bindings +smartparens)) (default +bindings +smartparens))
(setq fancy-splash-image "~/.config/doom-config/splash.png")

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB