Removed Emacs module and added configuration to home.nix
This commit is contained in:
parent
859036ba7c
commit
8f7badd25d
3 changed files with 10 additions and 13 deletions
|
|
@ -94,6 +94,16 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Oh boyee I love Emacs
|
||||||
|
programs.emacs = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.emacs-gtk;
|
||||||
|
extraPackages = epkgs: [
|
||||||
|
epkgs.nix-mode
|
||||||
|
epkgs.nixfmt
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
tree # Nice file tree views w/ permissions
|
tree # Nice file tree views w/ permissions
|
||||||
linux-wifi-hotspot # For hotspotting while over ethernet
|
linux-wifi-hotspot # For hotspotting while over ethernet
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
../../modules/efi.nix
|
../../modules/efi.nix
|
||||||
../../modules/laptop.nix
|
../../modules/laptop.nix
|
||||||
../../modules/hypr.nix
|
../../modules/hypr.nix
|
||||||
../../modules/emacs.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "kirigiri";
|
networking.hostName = "kirigiri";
|
||||||
|
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{ config, lib, pkgs, inputs, ...}:
|
|
||||||
|
|
||||||
{
|
|
||||||
programs.emacs = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.emacs-gtk;
|
|
||||||
extraPackages = epkgs: [
|
|
||||||
epkgs.nix-mode
|
|
||||||
epkgs.nixfmt
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue