fix spacemacs

Signed-off-by: Xe <me@christine.website>
This commit is contained in:
Cadey Ratio 2023-01-24 22:00:24 -05:00
parent 075f5d6426
commit 5fcd164ef3
3 changed files with 53 additions and 37 deletions

View File

@ -1,46 +1,54 @@
{ config, pkgs, ... }: { config, pkgs, lib, ... }:
let e = pkgs.writeTextFile { with lib;
name = "cadey-emacs.desktop";
destination = "/share/applications/cadey-emacs.desktop";
text = ''
[Desktop Entry]
Exec=emacsclient -nc
Icon=emacs
Name[en_US]=Emacs Client
Name=Emacs Client
StartupNotify=true
Terminal=false
Type=Application
'';
};
in
{
home.packages = with pkgs; [ anonymousPro e sqlite-interactive graphviz ];
programs.emacs.enable = true; let
e = pkgs.writeTextFile {
home.file.".spacemacs".source = ./spacemacs; name = "cadey-emacs.desktop";
destination = "/share/applications/cadey-emacs.desktop";
home.file."bin/e" = {
text = '' text = ''
#!/bin/sh [Desktop Entry]
emacsclient -a "" -nc $@ Exec=emacsclient -nc
Icon=emacs
Name[en_US]=Emacs Client
Name=Emacs Client
StartupNotify=true
Terminal=false
Type=Application
''; '';
executable = true;
}; };
home.activation.spacemacs = '' cfg = config.within.spacemacs;
mkdir -p ~/.ssh in {
options.within.spacemacs.enable = mkEnableOption "emacs with spacemacs";
if ! grep github.com ~/.ssh/known_hosts > /dev/null config = mkIf cfg.enable {
then home.packages = with pkgs; [ anonymousPro e sqlite-interactive graphviz ];
echo "github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==" >> ~/.ssh/known_hosts
fi
if [ ! -d "$HOME/.emacs.d" ]; then programs.emacs.enable = true;
GIT_CONFIG_GLOBAL=/dev/null GIT_CONFIG_SYSTEM=/dev/null git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
systemctl --user restart emacs home.file.".spacemacs".source = ./spacemacs;
fi
''; home.file."bin/e" = {
text = ''
#!/bin/sh
emacsclient -a "" -nc $@
'';
executable = true;
};
home.activation.spacemacs = ''
mkdir -p ~/.ssh
if ! grep github.com ~/.ssh/known_hosts > /dev/null
then
echo "github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==" >> ~/.ssh/known_hosts
fi
if [ ! -d "$HOME/.emacs.d" ]; then
GIT_CONFIG_GLOBAL=/dev/null GIT_CONFIG_SYSTEM=/dev/null git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
systemctl --user restart emacs
fi
'';
};
} }

View File

@ -48,4 +48,8 @@
}; };
systemd.services.tailscaled.path = with pkgs; [ mosh getent shadow ]; systemd.services.tailscaled.path = with pkgs; [ mosh getent shadow ];
home-manager.users.cadey = { ... }: {
within.spacemacs.enable = true;
};
} }

View File

@ -68,4 +68,8 @@
}; };
within.users.enableSystem = true; within.users.enableSystem = true;
home-manager.users.cadey = { ... }: {
within.emacs.enable = true;
};
} }