Added emacs. Added Scala stuff.
This commit is contained in:
parent
d205139164
commit
22afbd90f9
|
|
@ -9,6 +9,7 @@ rec {
|
||||||
../../snippets/zsh.nix
|
../../snippets/zsh.nix
|
||||||
../../snippets/taskwarrior.nix
|
../../snippets/taskwarrior.nix
|
||||||
../../snippets/kakoune.nix
|
../../snippets/kakoune.nix
|
||||||
|
../../snippets/emacs.nix
|
||||||
../../snippets/clifm.nix
|
../../snippets/clifm.nix
|
||||||
../../snippets/git.nix
|
../../snippets/git.nix
|
||||||
../../snippets/sway.nix
|
../../snippets/sway.nix
|
||||||
|
|
@ -80,6 +81,7 @@ rec {
|
||||||
[ (python3.withPackages (ppkgs: with ppkgs;[
|
[ (python3.withPackages (ppkgs: with ppkgs;[
|
||||||
pyyaml python-lsp-server
|
pyyaml python-lsp-server
|
||||||
])) ] ++ # I guess.....
|
])) ] ++ # I guess.....
|
||||||
|
[ coursier metals jdk23 scala scala-cli scalafmt ammonite sbt ] ++ # Scala
|
||||||
[
|
[
|
||||||
kak-lsp
|
kak-lsp
|
||||||
brightnessctl
|
brightnessctl
|
||||||
|
|
@ -157,6 +159,10 @@ rec {
|
||||||
# };
|
# };
|
||||||
# };
|
# };
|
||||||
|
|
||||||
|
# home.sessionPath = [
|
||||||
|
# "$HOME/.local/share/coursier/bin"
|
||||||
|
# ];
|
||||||
|
|
||||||
programs.swaylock = {
|
programs.swaylock = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = { font-size = 14; };
|
settings = { font-size = 14; };
|
||||||
|
|
|
||||||
6
snippets/emacs.nix
Normal file
6
snippets/emacs.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.emacs = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
'';
|
'';
|
||||||
profileExtra = ''
|
profileExtra = ''
|
||||||
export QT_SCALE_FACTOR_ROUNDING_POLICY=RoundPreferFloor
|
export QT_SCALE_FACTOR_ROUNDING_POLICY=RoundPreferFloor
|
||||||
|
. "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
|
||||||
# If running from tty1 start sway
|
# If running from tty1 start sway
|
||||||
# [ "$(tty)" = "/dev/tty1" ] && exec sway
|
# [ "$(tty)" = "/dev/tty1" ] && exec sway
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue