Added emacs. Added Scala stuff.

This commit is contained in:
vorboyvo 2024-12-24 15:58:45 -05:00
parent d205139164
commit 22afbd90f9
3 changed files with 13 additions and 0 deletions

View file

@ -9,6 +9,7 @@ rec {
../../snippets/zsh.nix
../../snippets/taskwarrior.nix
../../snippets/kakoune.nix
../../snippets/emacs.nix
../../snippets/clifm.nix
../../snippets/git.nix
../../snippets/sway.nix
@ -80,6 +81,7 @@ rec {
[ (python3.withPackages (ppkgs: with ppkgs;[
pyyaml python-lsp-server
])) ] ++ # I guess.....
[ coursier metals jdk23 scala scala-cli scalafmt ammonite sbt ] ++ # Scala
[
kak-lsp
brightnessctl
@ -157,6 +159,10 @@ rec {
# };
# };
# home.sessionPath = [
# "$HOME/.local/share/coursier/bin"
# ];
programs.swaylock = {
enable = true;
settings = { font-size = 14; };

6
snippets/emacs.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs, ... }:
{
programs.emacs = {
enable = true;
};
}

View file

@ -9,6 +9,7 @@
'';
profileExtra = ''
export QT_SCALE_FACTOR_ROUNDING_POLICY=RoundPreferFloor
. "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
# If running from tty1 start sway
# [ "$(tty)" = "/dev/tty1" ] && exec sway
'';