diff options
author | Ben Sima <ben@bsima.me> | 2022-07-06 22:19:46 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-07-06 22:20:46 -0400 |
commit | b9e2534e0859db3f3b4e402235bb23cecbe77863 (patch) | |
tree | 2582e94a93b8969cd6e3fc1f871d15db4407c103 /lib | |
parent | fe3b16632e15997c79adbbec2a0fb0f4588a0a9d (diff) |
update home-manager, emacs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.nix | 1 | ||||
-rw-r--r-- | lib/emacs-packages.nix | 6 | ||||
-rw-r--r-- | lib/linux.nix | 3 | ||||
-rw-r--r-- | lib/packages.nix | 1 |
4 files changed, 7 insertions, 4 deletions
diff --git a/lib/common.nix b/lib/common.nix index ce56cf3..5019e08 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -8,6 +8,7 @@ in { nixpkgs.overlays = [ (import ../overlay.nix) ]; home = { + stateVersion = "18.09"; sessionVariables = { GPGID = gpgid; EDITOR = "vim"; diff --git a/lib/emacs-packages.nix b/lib/emacs-packages.nix index 6ada756..562c2b7 100644 --- a/lib/emacs-packages.nix +++ b/lib/emacs-packages.nix @@ -9,13 +9,13 @@ avy avy-zap # bbdb blacken +carbon-now-sh cl-lib company company-cabal counsel crux define-word -deft dired-narrow direnv editorconfig @@ -41,7 +41,7 @@ htmlize ibuffer-vc imenu-anywhere indent-guide -# ivy +ivy ix ledger-mode lispy @@ -64,11 +64,13 @@ pass pinentry popwin projectile +projectile-ripgrep rainbow-mode rainbow-delimiters restclient rotate s +solarized-theme spacemacs-theme spaceline swiper diff --git a/lib/linux.nix b/lib/linux.nix index 62a5192..ef9adc0 100644 --- a/lib/linux.nix +++ b/lib/linux.nix @@ -22,7 +22,7 @@ let buildInputs = [ pkgs.xorg.libX11 pkgs.xorg.libXft ]; }; - base16-scheme = "spacemacs"; + base16-scheme = "solarized"; base16 = pkgs.stdenv.mkDerivation { name = "base16-builder"; src = builtins.fetchTarball { @@ -39,6 +39,7 @@ let theme = lib.removeSuffix "\n" (builtins.readFile "${homedir}/.local/share/xtheme"); xresources = "${base16}/xresources/base16-${base16-scheme}.${theme}.xresources"; + # used in polybar and dunst colors = { # derived from spacemacs "dark" = { highlight = "#5d4d7a"; diff --git a/lib/packages.nix b/lib/packages.nix index 15e50f8..efc3c48 100644 --- a/lib/packages.nix +++ b/lib/packages.nix @@ -126,7 +126,6 @@ in { w3m zebra zip - zulip-terminal ]; } |