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:
|
command = targetPath:
|
||||||
let
|
let
|
||||||
commandLine =
|
commandLine =
|
||||||
"TMPDIR=/tmp nixos-rebuild build --flake ${targetPath} -L --keep-going";
|
"TMPDIR=/tmp nixos-rebuild switch --flake ${targetPath} -L --keep-going";
|
||||||
in ''
|
in ''
|
||||||
echo '${commandLine}'
|
echo '${commandLine}'
|
||||||
nix-shell \
|
nix-shell \
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
home-manager.users.mainUser = {
|
home-manager.users.mainUser = {
|
||||||
home.file.".emacs.d/init.el".text = ''
|
programs.doom-emacs = {
|
||||||
(load "default.el")
|
enable = true;
|
||||||
'';
|
doomPrivateDir = ./doom.d;
|
||||||
};
|
};
|
||||||
environment.systemPackage = [
|
};
|
||||||
|
environment.systemPackages = [
|
||||||
pkgs.ripgrep
|
pkgs.ripgrep
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue