Home Gen53 @ 2025-09-28-15:33 by jonas@monolith
This commit is contained in:
parent
c757eed1b0
commit
7383f56ef6
@ -11,6 +11,7 @@
|
|||||||
# hive moduless
|
# hive moduless
|
||||||
hive.doom.enable = true;
|
hive.doom.enable = true;
|
||||||
hive.doom.enableCopilot = true;
|
hive.doom.enableCopilot = true;
|
||||||
|
hive.doom.enableTidal = true;
|
||||||
hive.doom.withNixPkgs = true;
|
hive.doom.withNixPkgs = true;
|
||||||
hive.doom.withShellPkgs = true;
|
hive.doom.withShellPkgs = true;
|
||||||
hive.firefox = {
|
hive.firefox = {
|
||||||
|
|||||||
@ -88,6 +88,7 @@ in {
|
|||||||
options.hive.doom = {
|
options.hive.doom = {
|
||||||
enable = lib.mkEnableOption "Enable Doom Emacs";
|
enable = lib.mkEnableOption "Enable Doom Emacs";
|
||||||
enableCopilot = lib.mkEnableOption "Enable Copilot in Doom Emacs";
|
enableCopilot = lib.mkEnableOption "Enable Copilot in Doom Emacs";
|
||||||
|
enableTidal = lib.mkEnableOption "Enable TidalCycles";
|
||||||
withLatexPkgs = lib.mkEnableOption "Enable LaTeX packages in doom path";
|
withLatexPkgs = lib.mkEnableOption "Enable LaTeX packages in doom path";
|
||||||
withShellPkgs = lib.mkEnableOption "Enable shell packages in doom path";
|
withShellPkgs = lib.mkEnableOption "Enable shell packages in doom path";
|
||||||
withNixPkgs = lib.mkEnableOption "Enable LaTeX packages in doom path";
|
withNixPkgs = lib.mkEnableOption "Enable LaTeX packages in doom path";
|
||||||
@ -201,6 +202,11 @@ in {
|
|||||||
source = ./static/packages.d/copilot.el;
|
source = ./static/packages.d/copilot.el;
|
||||||
onChange = "${doom-setup} sync --force -u -e";
|
onChange = "${doom-setup} sync --force -u -e";
|
||||||
};
|
};
|
||||||
|
"doom-config/packages.d/tidal.el" = {
|
||||||
|
enable = cfg.enableTidal;
|
||||||
|
source = ./static/packages.d/tidal.el;
|
||||||
|
onChange = "${doom-setup} sync --force -u -e";
|
||||||
|
};
|
||||||
"doom-emacs" = {
|
"doom-emacs" = {
|
||||||
source = builtins.fetchGit {
|
source = builtins.fetchGit {
|
||||||
url = "https://github.com/doomemacs/doomemacs";
|
url = "https://github.com/doomemacs/doomemacs";
|
||||||
|
|||||||
@ -35,7 +35,7 @@
|
|||||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||||
;; `load-theme' function. This is the default:
|
;; `load-theme' function. This is the default:
|
||||||
(setq doom-theme 'doom-monokai-classic)
|
(setq doom-theme 'doom-monokai-classic)
|
||||||
(custom-set-faces! `(font-lock-operator-face :foreground ,(doom-color 'font-lock-keyword-face)))
|
(custom-set-faces! `(font-lock-operator-face :foreground ,(doom-color 'operators)))
|
||||||
|
|
||||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||||
|
|||||||
1
modules/home/doom/static/packages.d/tidal.el
Normal file
1
modules/home/doom/static/packages.d/tidal.el
Normal file
@ -0,0 +1 @@
|
|||||||
|
(package! tidal)
|
||||||
Loading…
x
Reference in New Issue
Block a user