Skip to content

Commit

Permalink
WIP: feat(eww): Add bluetooth indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
TLATER committed Jan 8, 2025
1 parent 2b5880b commit fbffb17
Show file tree
Hide file tree
Showing 8 changed files with 1,584 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .dir-locals.el
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
;;; Directory Local Variables -*- no-byte-compile: t -*-
;;; For more information see (info "(emacs) Directory Variables")

((emacs-lisp-mode . ((fill-column . 88)
(indent-tabs-mode . nil)
(elisp-lint-indent-specs . ((use-package . 1)
(reformatter-define . 1)))
)))
(reformatter-define . 1)))))
(rust-mode
. ((eglot-workspace-configuration
. (:rust-analyzer (:linkedProjects ["./home-config/dotfiles/eww/utils/Cargo.toml"]))))))
20 changes: 19 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,17 @@
let
inherit (sops-nix.packages.x86_64-linux) sops-init-gpg-key sops-import-keys-hook;
inherit (self.packages.x86_64-linux) commit-nvfetcher;
inherit (nixpkgs.legacyPackages.x86_64-linux) nvchecker nvfetcher;
inherit (nixpkgs.legacyPackages.x86_64-linux)
cargo
clippy
dbus
nvchecker
nvfetcher
pkg-config
rust-analyzer
rustc
rustfmt
;
home-manager-bin = home-manager.packages.x86_64-linux.default;
in
nixpkgs.legacyPackages.x86_64-linux.mkShell {
Expand All @@ -142,6 +152,14 @@
commit-nvfetcher
home-manager-bin
sops-init-gpg-key

cargo
clippy
dbus
rust-analyzer
rustc
rustfmt
pkg-config
];

sopsPGPKeyDirs = [
Expand Down
1 change: 1 addition & 0 deletions home-config/dotfiles/eww/utils/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/
Loading

0 comments on commit fbffb17

Please sign in to comment.