removed emacs

This commit is contained in:
twoneis 2023-11-24 04:18:08 +01:00
parent 7cde8946c0
commit 18dc64bb44
2 changed files with 1 additions and 10 deletions

View file

@ -14,10 +14,6 @@
nixos-hardware = {
url = "github:nixos/nixos-hardware/master";
};
nix-doom-emacs = {
url = "github:nix-community/nix-doom-emacs";
};
};
outputs = { nixpkgs, home-manager, nixos-hardware, ... }:

View file

@ -1,4 +1,4 @@
{ pkgs, nix-doom-emacs, ... }: {
{ pkgs, ... }: {
home.packages = with pkgs; [
nil
marksman
@ -10,9 +10,4 @@
settings = import ./helix-config.nix;
themes = import ./helix-theme.nix;
};
programs.doom-emacs = {
enable = true;
doomPrivateDir = ./doom.d;
};
}