fixing emacs
This commit is contained in:
parent
f42f08b5b6
commit
78d39395b7
2 changed files with 6 additions and 5 deletions
|
@ -5,7 +5,7 @@ let
|
|||
command = targetPath:
|
||||
let
|
||||
commandLine =
|
||||
"TMPDIR=/tmp nixos-rebuild build --flake ${targetPath} -L --keep-going";
|
||||
"TMPDIR=/tmp nixos-rebuild switch --flake ${targetPath} -L --keep-going";
|
||||
in ''
|
||||
echo '${commandLine}'
|
||||
nix-shell \
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{ pkgs, ... }: {
|
||||
home-manager.users.mainUser = {
|
||||
home.file.".emacs.d/init.el".text = ''
|
||||
(load "default.el")
|
||||
'';
|
||||
programs.doom-emacs = {
|
||||
enable = true;
|
||||
doomPrivateDir = ./doom.d;
|
||||
};
|
||||
environment.systemPackage = [
|
||||
};
|
||||
environment.systemPackages = [
|
||||
pkgs.ripgrep
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue