This commit is contained in:
Sakooooo 2023-10-05 07:37:12 +04:00
parent 7c34528ae3
commit 0f8cc8eb17
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -14,16 +14,15 @@ in {
};
config = mkIf cfg.enable {
# ues daemon
services.emacs = {
enable = true;
install = true;
package = pkgs.emacs;
};
users.users.sako.packages = with pkgs; [
# bro
# direnv
direnv
# daemon lmao
#emacs
];
home-manager.users.sako.home.file.".emacs.d" = {
enable = true;
@ -32,6 +31,7 @@ in {
};
fonts.fonts = with pkgs; [
(nerdfonts.override {fonts = ["JetBrainsMono"];})
jetbrains-mono
];
};
}