Skip to content

Commit

Permalink
chore(emacs): use recent version of miasma-theme
Browse files Browse the repository at this point in the history
HACK until the version with `whitespace-mode` support is on MELPA.
  • Loading branch information
gekoke committed Nov 27, 2024
1 parent 172c5c9 commit 374c789
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
1 change: 1 addition & 0 deletions modules/nixos/programs/emacs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ in
pkgs.elementary.indent-bars
pkgs.elementary.adwaita-dark-theme
pkgs.elementary.anisochromatic
pkgs.elementary.miasma-theme
];
};
earlyInitText = readFiles [
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/programs/emacs/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
:custom
(catppuccin-flavor 'frappe))
(use-package anisochromatic :ensure nil)
(use-package miasma-theme)
(use-package miasma-theme :ensure nil)

(use-package remember-last-theme
:config
Expand Down
22 changes: 22 additions & 0 deletions packages/miasma-theme/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
lib,
emacsPackages,
fetchFromGitHub,
...
}:
emacsPackages.trivialBuild rec {
pname = "miasma-theme";
version = "7651717";

src = fetchFromGitHub {
owner = "daut";
repo = "miasma-theme.el";
rev = version;
hash = "sha256-0k7yFtyRKcMGniTil5AgiFixSyqm4mrhR7rvoHBv+AE=";
};

meta = {
homepage = "https://github.com/daut/miasma-theme.el";
license = lib.licenses.gpl3;
};
}

0 comments on commit 374c789

Please sign in to comment.